  :root {
      --green-900: #0b5224;
      --green-800: #0d3e1d;
      --green-700: #137a3b;
      --green-500: #2aa84a;
      --green-300: #a8e6a0;
      --cream: #fffef8;
      --muted: #6b6b6b;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html,
    body {
      height: 100%;
      background: linear-gradient(180deg, var(--green-300), var(--green-800));
      color: var(--green-900);
    }

    a {
      color: inherit;
      text-decoration: none
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(6px)
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px 28px;
      gap: 40px;
      width: 100%
    }

    .brand {
      display: flex;
      gap: 12px;
      align-items: center;
      position: absolute;
      left: 20px
    }

    .brand img {
      width: 54px;
      height: 54px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(10, 60, 20, 0.12);
    }

    .brand h1 {
      font-size: 18px;
      margin: 0
    }

    .brand p {
      margin: 0;
      font-size: 12px;
      color: var(--muted)
    }

    .nav-actions {
      display: flex;
      gap: 20px;
      align-items: center
    }

    .btn {
      padding: 10px 14px;
      border-radius: 12px;
      background: var(--green-700);
      color: white;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all .3s
    }

    .btn:hover {
      transform: scale(1.05);
      background: var(--green-500)
    }

    .btn.ghost {
      background: transparent;
      color: var(--green-900);
      border: 1px solid rgba(11, 82, 36, 0.12)
    }

    /* New CSS for Hamburger Menu */
    .nav-toggle {
      display: none; /* Hide on desktop */
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 25px;
      cursor: pointer;
      z-index: 100;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--green-900);
      transition: all 0.3s ease-in-out;
    }

    .nav-menu {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      background: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      text-align: center;
    }
    /* End of New CSS */

    /* Slider */
    .slider {
      position: relative;
      overflow: hidden;
      width: 100%;
      margin: 0 auto
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: 100%
    }

    .slide {
      min-width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      font-weight: 700;
      position: relative;
      background-size: cover;
      background-position: center
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4)
    }

    .slide-content {
      position: relative;
      z-index: 2;
      text-align: center
    }

    .dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: white;
      opacity: 0.5;
      cursor: pointer
    }

    .dot.active {
      opacity: 1;
      background: var(--green-300)
    }

    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.4);
      color: white;
      padding: 8px;
      border: none;
      cursor: pointer;
      font-size: 18px;
      z-index: 5
    }

    .prev {
      left: 10px
    }

    .next {
      right: 10px
    }

    /* New Section: Why MatchaLuv? */
    .usp-section {
      text-align: center;
      padding: 80px 20px;
      background: linear-gradient(180deg, var(--green-300), var(--green-700));
      color: white;
    }

    .usp-section h2 {
      font-size: 2.5em;
      margin-bottom: 50px;
    }

    .usp-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .usp-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 12px;
      width: 300px;
      backdrop-filter: blur(5px);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .usp-card:hover {
      transform: translateY(-10px);
    }

    .usp-card .icon {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--cream);
    }

    .usp-card h3 {
      font-size: 1.2em;
      margin-bottom: 10px;
      color: white;
    }

    .usp-card p {
      font-size: 1em;
      color: #ddd;
    }


    /* Our Story */
    .our-story {
      display: flex;
      width: 100%;
      margin: 0;
      gap: 40px;
      align-items: center;
      justify-content: center;
      padding: 100px 40px;
      background: var(--green-800);
      color: white;
      border-radius: 0;
    }

    .our-story img {
      max-width: 50%;
      border-radius: 12px;
    }

    .our-story-text {
      max-width: 50%;
    }

    .our-story-text h2 {
      margin-bottom: 24px;
      font-size: 3.5em;
      font-weight: bold;
    }

    .our-story-text p {
      font-size: 1.5em;
      line-height: 1.6;
    }


    /* Footer */
    footer {
      margin: 0;
      width: 100%;
      padding: 40px 20px;
      text-align: center;
      color: white;
      background: linear-gradient(135deg, var(--green-900), var(--green-800));
      position: relative;
      overflow: hidden;
      border-radius: 0;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('leaf-pattern.png');
      opacity: 0.05;
      z-index: 0
    }

    footer .footer-content {
      position: relative;
      z-index: 1
    }

    footer h3 {
      margin-bottom: 10px;
      font-size: 20px
    }

    footer p {
      margin-bottom: 8px;
      color: #ddd
    }

    footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 12px
    }

    footer .footer-links a {
      color: #eee;
      transition: color 0.3s
    }

    footer .footer-links a:hover {
      color: #fff
    }

    /* Responsive */
    @media(max-width:900px) {
      .nav-actions {
        margin-left: auto;
      }
      .nav-menu {
        display: none;
      }
      .nav-toggle {
        display: flex;
      }
      .slide {
        height: 200px;
        font-size: 20px
      }

      .our-story {
        flex-direction: column;
        padding: 50px 20px;
      }

      .our-story img,
      .our-story-text {
        max-width: 100%
      }

      .our-story-text h2 {
        font-size: 2.5em;
      }

      .our-story-text p {
        font-size: 1.2em;
      }

      .usp-container {
        flex-direction: column;
        gap: 20px;
      }
      
      .usp-card {
          width: 100%;
      }

      footer .footer-links {
        flex-direction: column;
        gap: 10px
      }
    }

    @media(max-width: 768px) {
      .slide {
        height: 300px !important;
        font-size: 20px !important;
      }

      footer {
        padding: 20px 10px !important;
      }
    }