html, body {
  overflow-x: hidden;
  width: 100%;
}

body * {
  max-width: 100vw;
  box-sizing: border-box;
}
  
    :root {
      --primary: #1A7F6F;
      --secondary: #28D2B2;
      --accent: #FF7A00;
      --dark: #152729;
      --light: #F3F8F8;
      --soft: #E5F9F7;
      --white: #ffffff;
      --text: #222831;
      --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--light);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      background: var(--white);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow);
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .logo-icon svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }

    .logo-text {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--dark);
    }

    .logo-text span {
      color: var(--accent);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav a {
      font-weight: 600;
      color: var(--dark);
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--primary);
    }

    .btn {
      padding: 10px 24px;
      background: var(--accent);
      color: var(--white);
      font-weight: 600;
      border-radius: 50px;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: var(--accent);
      box-shadow: 0 0 15px rgba(255, 122, 0, 0.4);
      transform: translateY(-2px) scale(1.03);
    }

    /* Mobile Burger Menu */
    .burger {
      display: none;
      font-size: 2rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 80px;
        right: 20px;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 12px;
      }

      nav.show {
        display: flex;
      }

      .burger {
        display: block;
        color: var(--dark);
      }
    }

    /* Dropdown Nav */
   .dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: var(--white);
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: var(--shadow);
  border-radius: 12px;
  z-index: 999;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--soft);
}

/* Desktop Hover Only */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}