    :root {
      --bg: #f4f7f0;
      --accent: #5A6A3F;
      --muted: #5A6A3F;
      --card: #f4f7f0;
      --radius: 14px;
    }

    * { box-sizing: border-box; }
    /* Font Setup */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
    body {
      margin: 0;
      background: var(--bg);
      font-family: 'Outfit', sans-serif;
    }
    /* --- Main Header Box --- */
.header {
    padding: 0 20px;
  background: #f4f7f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-bottom: 1px solid #5A6A3F;
}

/* --- Inner Navigation --- */
.headerNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

/* --- All ULs --- */
.headerNav ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Logo Section (Left) --- */
.logoContainer img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

/* --- Center Navigation Links --- */
.centerHeader a {
  text-decoration: none;
  color:  #5A6A3F;
  font-weight: 600;
  transition: color 0.3s ease;
    font-size: 19px;
}

.centerHeader a:hover {
  text-decoration: underline;
}

/* --- Right Header (Buttons/Links) --- */
.rightHeader a {
  text-decoration: none;
  background: #5A6A3F;
  color: white;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px; /* optional spacing between icon and text */
}

/* Only target the <i> element for before/after animation */
.rightHeader a{
  position: relative;
}

.rightHeader a::after,
.rightHeader a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #5A6A3F, #dae5c5);
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.rightHeader a::before {
  top: -5px;
  transform-origin: left;
}

.rightHeader a::after {
  bottom: -5px;
}

.rightHeader a:hover{
  background: none;
  color: #5A6A3F;
  font-size: 19px;
}
.rightHeader a:hover::after,
.rightHeader a:hover::before {
  transform: scaleX(1);
}



/* Hide mobile header by default */
.mobileHeader {
    display: none;
}

/* Hamburger styling */
.hamburger {
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin: 20px;
    z-index: 1100;
}

.hamburger span {
    height: 4px;
    background: #5A6A3F;
    border-radius: 2px;
}

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* hidden by default */
    width: 250px;
    height: 100%;
    background: #f4f7f0;
    box-shadow: 2px 0 8px rgba(0,0,0,0.2);
    transition: left 0.3s ease;
    z-index: 1200;
    padding: 50px 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 20px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #5A6A3F;
    font-weight: 600;
    font-size: 18px;
}

.closeBtn {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

    .mainContainer{
            -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    color: #333;
        padding: 48px 20px;
        display: flex;
        justify-content: center;
    }
    .container {
      background: var(--card);
      border-radius: 18px;
      max-width: 1100px;
      width: 100%;
      padding: 32px;
      box-shadow: 0 8px 30px rgba(90,106,63,0.2);
      border: 1px solid rgba(90,106,63,0.15);
    }

    header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 24px;
    }

    .logo {
      width: 72px;
      height: 72px;
      border-radius: 12px;
      background: var(--accent);
      color: white;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 6px 20px rgba(90,106,63,0.18);
    }

    h1 {
      margin: 0;
      font-size: 24px;
    }

    p.lead {
      color: var(--muted);
      margin: 4px 0 0;
      font-size: 15px;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 28px;
    }

    .summary {
      background: rgba(90,106,63,0.05);
      padding: 16px;
      border-radius: 12px;
      border: 1px solid rgba(90,106,63,0.1);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .benefits-wrap {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }

    .benefit {
      background: rgba(90,106,63,0.05);
      border-radius: 12px;
      padding: 16px;
      border: 1px solid rgba(90,106,63,0.1);
      display: flex;
      gap: 12px;
      transition: transform .2s, box-shadow .2s;
    }

    .benefit:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(90,106,63,0.25);
    }

    .icon {
      background: rgba(90,106,63,0.1);
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-size: 20px;
    }

    .benefit h4 {
      margin: 0;
      font-size: 15px;
    }

    .benefit p {
      margin: 6px 0 0;
      font-size: 13px;
      color: var(--muted);
    }

    .card {
      background: var(--card);
      border-radius: 12px;
      padding: 20px;
      border: 1px solid rgba(90,106,63,0.15);
    }

    .price {
      font-weight: 700;
      font-size: 24px;
      color: var(--accent);
      margin: 10px 0;
    }

    .cta a {
      display: inline-block;
      background: var(--accent);
      color: white;
      text-decoration: none;
      padding: 10px 16px;
      border-radius: 12px;
      font-weight: 600;
      box-shadow: 0 8px 24px rgba(90,106,63,0.2);
    }

    .cta a:hover {
      background: #495934;
    }

    footer {
      margin-top: 24px;
      color: var(--muted);
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 900px) {
      .grid { grid-template-columns: 1fr; }
    }