
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fef9f0;   /* warm soft background */
      color: #2d3e2b;
      scroll-behavior: smooth;
      line-height: 1.5;
    }

    /* container utility */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* HEADER & NAV (modern glassmorphism inspired) */
    header {
      background: rgba(255, 248, 235, 0.95);
      backdrop-filter: blur(3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 16px 0;
      transition: all 0.3s;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .logo h1 {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.3px;
      background: linear-gradient(135deg, #2b6e3c, #f4b942);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .logo p {
      font-size: 0.7rem;
      color: #b45f1b;
      font-weight: 500;
    }
    .logo img {
      width: 32px;
      height: 32px;
      border-radius: 60px;
      margin-right: 8px;
      vertical-align: middle;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      flex-wrap: wrap;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #2d4a2a;
      transition: 0.2s;
      font-size: 1rem;
    }

    .nav-links a:hover, .nav-links a.active {
      color: #e68a2e;
      border-bottom: 2px solid #e68a2e;
      padding-bottom: 4px;
    }

    /* mobile menu toggle (hidden on desktop) */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: #2b6e3c;
      cursor: pointer;
    }

    /* responsive nav */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 70%;
        height: calc(100vh - 75px);
        background: #fffaf2;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 32px;
        transition: 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
        z-index: 99;
        backdrop-filter: blur(12px);
      }
      .nav-links.show {
        left: 0;
      }
      .nav-links a {
        font-size: 1.2rem;
      }
    }

    /* CAROUSEL SECTION */
    .carousel-section {
      margin: 32px 0 48px 0;
    }

    .carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
    }

    .carousel-slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      min-width: 100%;
      position: relative;
    }

    .slide img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
    }

    /* overlay caption */
    .caption {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(5px);
      padding: 10px 20px;
      border-radius: 40px;
      color: white;
      font-weight: 600;
    }

    /* buttons */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,240,0.8);
      border: none;
      font-size: 1.8rem;
      padding: 10px 16px;
      cursor: pointer;
      border-radius: 60px;
      color: #2b6e3c;
      transition: 0.2s;
      z-index: 10;
    }
    .carousel-btn:hover {
      background: #f4b942;
      color: white;
    }
    .prev {
      left: 15px;
    }
    .next {
      right: 15px;
    }
    .dots {
      text-align: center;
      margin-top: 16px;
    }
    .dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      background-color: #ccc;
      border-radius: 50%;
      margin: 0 5px;
      cursor: pointer;
      transition: 0.2s;
    }
    .dot.active {
      background-color: #e68a2e;
      width: 28px;
      border-radius: 10px;
    }

    /* section styling */
    section {
      padding: 70px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
      color: #2c5e2a;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: #f4b942;
      border-radius: 4px;
    }

    /* about grid */
    .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
    }
    .about-text {
      flex: 1.5;
    }
    .about-text p {
      margin-bottom: 20px;
      font-size: 1.05rem;
      color: #2f3e2c;
    }
    .about-highlight {
      background: #fff0dc;
      padding: 20px;
      border-radius: 24px;
      margin-top: 20px;
    }
    .about-img {
      flex: 1;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s;
    }
    .about-img:hover img {
      transform: scale(1.02);
    }

    /* benefits cards */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-top: 20px;
    }
    .benefit-card {
      background: white;
      border-radius: 28px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.25s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      border: 1px solid #f9e5c2;
    }
    .benefit-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
      border-color: #f4b942;
    }
    .benefit-icon {
      font-size: 2.8rem;
      color: #e68a2e;
      margin-bottom: 20px;
    }
    .benefit-card h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: #2b5e2a;
    }
    .benefit-card p {
      color: #5a5a4e;
    }

    /* contact section */
    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      background: #ffffffdb;
      border-radius: 40px;
      padding: 32px 28px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    }
    .contact-info {
      flex: 1;
    }
    .contact-info h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
    }
    .contact-detail {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
      font-size: 1rem;
    }
    .contact-detail i {
      width: 36px;
      height: 36px;
      background: #fff0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 60px;
      color: #e68a2e;
      font-size: 1.2rem;
    }
    .contact-form {
      flex: 1;
    }
    .input-group {
      margin-bottom: 20px;
    }
    input, textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1px solid #ffe0b5;
      border-radius: 32px;
      font-family: 'Inter', sans-serif;
      background: #fefaf5;
      transition: 0.2s;
    }
    input:focus, textarea:focus {
      outline: none;
      border-color: #f4b942;
      box-shadow: 0 0 0 3px rgba(244,185,66,0.2);
    }
    .btn-submit {
      background: #2b6e3c;
      border: none;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      transition: 0.2s;
      font-size: 1rem;
    }
    .btn-submit:hover {
      background: #e68a2e;
      transform: scale(1.02);
    }
    .form-message {
      margin-top: 16px;
      font-weight: 500;
    }

    footer {
      background: #2a3e27;
      color: #fef3e0;
      text-align: center;
      padding: 28px 20px;
      margin-top: 40px;
      border-radius: 32px 32px 0 0;
    }

    /* responsiveness */
    @media (max-width: 700px) {
      .slide img {
        height: 320px;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .container {
        padding: 0 20px;
      }
      .contact-wrapper {
        padding: 24px 18px;
      }
    }
    button {
      background: none;
      border: none;
    }
    .map-placeholder {
      background: #e7dcc8;
      border-radius: 28px;
      padding: 12px;
      text-align: center;
      margin-top: 20px;
      font-size: 0.85rem;
    }
