body{
  overflow-x: hidden;
}



.section-wrapper {
    width: 80%;
    max-width: 1000px;
    margin: 70px auto;
    font-family: "Georgia", serif;
    color: #064C42;
}

.main-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #064C42;
    margin-bottom: 40px;
    line-height: 1.3;
}

.list {
    list-style-type: disc;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.9;
}

.list li {
    margin-bottom: 8px;
}


.note {
    margin-top: 40px;
    font-size: 14px;
    text-align: left;   /* ⬅ CENTER se LEFT kar diya */
    color: #064C42;
}
.section-wrapper {
    width: 80%;
    max-width: 900px;
    margin: 60px auto;
}

.main-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #064C42;
    margin-bottom: 40px;
}

.bullet-list,
.number-list {
    font-size: 16px;
    color: #064C42;
    line-height: 1.6;
    margin-left: 20px;
}

.note-text {
    margin-top: 20px;
    font-size: 14px;
    color: #064C42;
}

.number-list li {
    margin-bottom: 20px;
}
.ranges-section {
    background: #f3f0eb; /* same light cream background */
    padding: 60px 20px;
}

.ranges-heading {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #064C42;
    margin-bottom: 50px;
}

.ranges-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
}

.range-box {
    width: 300px;
    background: transparent;
    border: 4px solid #064C42;
    border-radius: 30px;
    padding: 35px 20px;
    text-align: center;
    color: #064C42;
}

.range-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.range-box p {
    font-size: 14px;
    line-height: 1.4;
}
.faq-section {
  width: 70%;
  margin: 50px auto;
  font-family: "Georgia", serif;
}

.faq-title {
  font-size: 32px;
  color: #0b4635;
  margin-bottom: 30px;
  border-left: 3px solid #0b4635;
  padding-left: 12px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}

.faq-question {
  font-size: 18px;
  color: #0b4635;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  color: #444;
  font-size: 15px;
  margin-top: 10px;
  display: none;
  transition: all 0.3s ease;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #0b4635;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}
.lv-footer {
  background: #002E29;          /* EXACT dark green from image */
  padding: 70px 0;
  font-family: "Georgia", serif;
  color: #e9ecec;
}

.lv-container {
  width: 70%;
  margin: auto;
}

/* TOP SECTION */
.lv-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lv-logo {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.lv-logo-text {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 13px;
  opacity: 0.9;
}

.lv-top-links a {
  display: block;
  color: #e9ecec;
  font-size: 14px;
  margin-bottom: 12px;
  text-decoration: none;
}

/* LINES */
.lv-line {
  border: none;
  border-top: 1px solid #1b4b46; /* Thin grey-green line */
  margin: 35px 0;
}

/* MIDDLE SECTION */
.lv-middle {
  display: flex;
  gap: 90px;
}

.lv-col h4 {
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #d0d0d0;
}

.lv-col a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #e9ecec;
  font-size: 14px;
}

.lv-col a:hover {
  color: white;
}

/* COPYRIGHT */
.lv-copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.85;
  margin-top: 20px;
}