
body{
    margin: 0
    ;
}
.navbar {
  width: 100%;
  padding: 22px 60px;
  background: #fff;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #064e3b;
  font-size: 16px;
}

.nav-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #064e3b;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
}

/* ================= FAQ SECTION ================= */
/* 
.faq-section {
  padding: 120px 60px;
  color: #064e3b;
  font-family: serif;
} */
.faq-section {

  padding: 0 60px;
 
}


/* ---------- Header ---------- */

.faq-header {
  text-align: center;
  margin-bottom: 110px;
}

.faq-title {
  font-size: 48px;
  margin-bottom: 12px;
}

.faq-subtitle {
  font-size: 34px;
  margin-bottom: 18px;
}

.faq-desc {
  font-size: 15px;
  color: #2f5f53;
}

/* ---------- Body Grid ---------- */

.faq-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 96px;
  align-items: flex-start;

  /* REQUIRED for sticky */
  position: relative;
}



.faq-left {
  position: sticky;
  top: 120px;   /* navbar height */
  height: fit-content;
}


.faq-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 22px;
  cursor: pointer;
}

.circle-arrow {
  width: 42px;
  height: 42px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-link.active .circle-arrow {
  background: #064e3b;
}

.faq-left hr {
  border: none;
  border-bottom: 1px solid #dcdcdc;
}

/* ---------- RIGHT CONTENT (NORMAL FLOW) ---------- */
.faq-right {
  max-width: 680px;
}



/* ---------- Typography ---------- */

.faq-main-title {
  font-size: 36px;
  margin: 0;
}

.faq-date {
  font-size: 14px;
  margin: 8px 0 22px 0;
}

.faq-q {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #064e3b;
}

.faq-a {
  font-size: 16px;
  line-height: 1.7;
  color: #2f5f53;
  margin-bottom: 34px;
}
.faq-divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 80px 0 40px 0;
}
.faq-divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 80px 0 40px 0;
}
.faq-main-title{
  color:#064e3b; 
}
.faq-title{
  color: #064e3b;
}
.faq-subtitle{
  color: #064e3b;
}
@media (max-width: 1024px) {

  /* NAVBAR */
  .navbar {
    padding: 18px 30px;
  }

  .nav-links {
    gap: 24px;
  }

  /* FAQ SECTION */
  .faq-section {
    padding: 0 30px;
  }

  .faq-header {
    margin-bottom: 70px;
  }

  .faq-title {
    font-size: 40px;
  }

  .faq-subtitle {
    font-size: 28px;
  }

  .faq-body {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  /* Disable sticky on tablet */
  .faq-left {
    position: relative;
    top: 0;
  }

  .faq-right {
    max-width: 100%;
  }

}
@media (max-width: 640px) {

  /* NAVBAR */
  .navbar {
    padding: 16px 20px;
  }

  .nav-links {
    display: none; /* later hamburger */
  }

  .nav-btn a {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* FAQ HEADER */
  .faq-header {
    margin-bottom: 50px;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 22px;
  }

  .faq-desc {
    font-size: 14px;
  }

  /* FAQ BODY */
  .faq-body {
    gap: 48px;
  }

  .faq-link {
    font-size: 18px;
    padding: 22px 0;
  }

  .circle-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* RIGHT CONTENT */
  .faq-main-title {
    font-size: 28px;
  }

  .faq-q {
    font-size: 18px;
  }

  .faq-a {
    font-size: 15px;
  }

  .faq-divider {
    margin: 60px 0 32px 0;
  }

}
