:root {
      --primary:        #006412;
      --primary-dark:   #004d0e;
      --primary-light:  #1a7d2b;
      --primary-soft:   rgba(0,100,18,0.10);
      --primary-xsoft:  rgba(0,100,18,0.06);
      --cream:          #F7F2EA;
      --sand:           #E8DDD0;
      --brown:          #3a2a1a;
      --brown-mid:      #6b5040;
      --dark:           #1e1208;
      --white:          #FFFDF9;
    }

    .section-heading {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 52px;
      line-height: 1.2;
    }
    .section-heading em { font-style: italic; color: var(--primary); }

    /* ── NAVBAR ── */
    .site-navbar {
      background: var(--white);
      border-bottom: 2px solid var(--sand);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    .site-navbar .navbar-brand {
      
      font-size: 20px;
      font-weight: 700;
      color: var(--primary) !important;
      letter-spacing: 0.02em;
    }
    .site-navbar .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--brown-mid) !important;
      letter-spacing: 0.04em;
      padding: 8px 16px !important;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }
    .site-navbar .nav-link:hover,
    .site-navbar .nav-link.active {
      color: var(--primary) !important;
      background: var(--primary-xsoft);
    }
    .navbar-toggler { border-color: var(--sand); }
    .navbar-toggler:focus { box-shadow: 0 0 0 2px var(--primary-soft); }

    /* ── HERO ── */
    .faq-hero {
      background: var(--primary-dark);
      padding: 80px 0 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .faq-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 85% 40%, rgba(0,160,40,0.25) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(0,80,20,0.2) 0%, transparent 60%);
      pointer-events: none;
    }
    .faq-hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
      position: relative;
    }
    .faq-hero h1 {
      
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      position: relative;
      margin-bottom: 18px;
    }
    .faq-hero h1 em { font-style: italic; color: #5ddb6e; }
    .faq-hero p {
      font-size: 16px;
      color: rgba(255,255,255,0.7);
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.7;
      position: relative;
    }

    /* ── MAIN FAQs LAYOUT ── */
    .faqs-section {
      padding: 80px 0 100px;
    }

    /* ── SIDEBAR TABS ── */
    .faqs-sidebar {
      position: sticky;
      top: 88px;
    }
    .sidebar-heading {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--brown-mid);
      margin-bottom: 14px;
      font-weight: 500;
    }
    .tab-btn {
      display: block;
      width: 100%;
      text-align: left;
      padding: 12px 18px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 400;
      color: var(--brown-mid);
      background: none;
      border: none;
      cursor: pointer;
      margin-bottom: 4px;
      transition: background 0.15s, color 0.15s;
      letter-spacing: 0.01em;
      
    }
    .tab-btn:hover { background: var(--sand); color: var(--brown); }
    .tab-btn.active {
      background: var(--primary);
      color: #fff;
      font-weight: 500;
    }

    /* Mobile tabs — horizontal scroll */
    .mobile-tabs {
      display: none;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      margin-bottom: 32px;
      scrollbar-width: none;
    }
    .mobile-tabs::-webkit-scrollbar { display: none; }
    .mobile-tabs .tab-btn {
      display: inline-block;
      width: auto;
      white-space: nowrap;
      flex-shrink: 0;
      border: 1.5px solid var(--sand);
    }
    .mobile-tabs .tab-btn.active { border-color: var(--primary); }

    @media (max-width: 991.98px) {
      .faqs-sidebar { display: none; }
      .mobile-tabs  { display: flex; }
    }

    /* ── FAQ GROUP ── */
    .faq-group { display: none; }
    .faq-group.active { display: block; }

    .faq-group-title {
      
      font-size: 26px;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 28px;
      padding-bottom: 18px;
      border-bottom: 1.5px solid var(--sand);
    }

    /* ── ACCORDION ── */
    .faq-item {
      border-bottom: 1px solid var(--sand);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      font-size: 15.5px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.45;
      transition: color 0.15s;
      
    }
    .faq-question:hover { color: var(--primary); }
    .faq-question.open  { color: var(--primary); }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, border-color 0.15s, transform 0.25s;
    }
    .faq-question.open .faq-icon {
      background: var(--primary);
      border-color: var(--primary);
      transform: rotate(45deg);
    }
    .faq-icon svg { width: 12px; height: 12px; color: var(--brown-mid); }
    .faq-question.open .faq-icon svg { color: #fff; }

    .faq-answer {
      display: none;
      padding: 0 40px 24px 0;
      font-size: 15px;
      color: #6b5040;
      line-height: 1.8;
    }
    .faq-answer.open { display: block; }
    .faq-answer ul {
      margin-top: 12px;
      margin-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .faq-answer ul li { font-size: 14.5px; color: #6b5040; }
    .faq-answer a { color: var(--primary); text-decoration: underline; }

    @media (max-width: 575.98px) {
      .faq-answer { padding-right: 10px; }
    }

    /* ── CONTACT CARD ── */
    .faq-contact {
      margin-top: 60px;
      background: var(--white);
      border-radius: 20px;
      padding: 44px 48px;
      border: 1.5px solid var(--sand);
    }
    .faq-contact-icon {
      flex-shrink: 0;
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: var(--primary-soft);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .faq-contact-icon svg { width: 30px; height: 30px; color: var(--primary); }
    .faq-contact h3 {
      
      font-size: 22px;
      color: var(--brown);
      margin-bottom: 8px;
    }
    .faq-contact p {
      font-size: 14px;
      color: #7a6055;
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .btn-primary-custom {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      padding: 13px 28px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary-custom:hover {
      background: var(--primary-light);
      color: #fff;
      transform: translateY(-1px);
    }

    @media (max-width: 767.98px) {
      .faq-contact {
        padding: 32px 24px;
        text-align: center;
      }
      .faq-contact-icon { margin: 0 auto 16px; }
    }

    /* ── FOOTER ── */
    .site-footer {
      background: var(--brown);
      color: rgba(255,255,255,0.6);
      text-align: center;
      padding: 28px 20px;
      font-size: 13px;
    }
    .site-footer a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    .site-footer a:hover { color: #5ddb6e; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate { animation: fadeUp 0.5s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
