
/* =========================================
   Hero Section
========================================= */

.hero-section {
  background: #FAF9F6;
  padding: 50px 70px 0px;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.section-title.hero {
  text-align: left;
}

.hero-left p {
  font-family: "Playfair Display";
  font-size: 16px;
  line-height: 1.05;
  color: #354230b0;
  margin-bottom: 10px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 30px;
}



.hero-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    padding: 60px 100px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .support-list span {
    font-size: 15px;
    padding: 8px 12px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .hero-section {
    padding: 60px 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 35px;
  }

  .hero-left {
    text-align: center;
  }

  .section-title.hero {
  text-align: center;
  }


  .hero-left p {
    font-size: 16px;
    line-height: 1.25;
  }

  .support-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-list span {
    min-height: 42px;
    font-size: 16px;
  }

  .hero-buttons {
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================================
   New page design 
========================================= */

/* =========================================
   Counselling Lifestyle FAQ Section
========================================= */

.counselling-faq-section {
  width: 100%;
  background: #FAF9F6;
  padding: 50px 70px;
  box-sizing: border-box;
}

.counselling-faq-container {
  width: 100%;
  margin: 0 auto;
}

.counselling-faq-title {
  text-align: center;
  margin-bottom: 40px;
 
}

.faq-block {
  width: 100%;
  margin-bottom: 28px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.faq-question span {
  width: 30px;
  height: 30px;
  background: #d9c5a3;
  color: #354230;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  flex: 0 0 auto;
}

.faq-question h3 {
  font-family: "The Seasons", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #354230;
  margin: 0;
}

.faq-answer {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 7px;
  padding: 14px 12px;
  box-sizing: border-box;
  background:
    linear-gradient(#FAF9F6, #FAF9F6) padding-box,
    linear-gradient(
      90deg,
      #d9c5a3 0%,
      #354230 100%
    ) border-box;
}

.faq-answer p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
  color: #354230;
  margin: 0;
}

.focus-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
  margin-top: 28px;
}

.focus-area-item {
  min-height: 60px;
  padding: 0 12px;
  text-align: center;
  border-right: 1px solid #d8d2c8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.focus-area-item:last-child {
  border-right: none;
}

.focus-area-item h4 {
  font-family: "The Seasons", Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #354230;
  margin: 0 0 8px;
}

.focus-area-item p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 8px;
  line-height: 1.15;
  color: #354230;
  margin: 0;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .counselling-faq-title {
    font-size: 40px;
  }

  .focus-area-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 0;
  }

  .focus-area-item:nth-child(4n) {
    border-right: none;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .counselling-faq-section {
    padding: 45px 18px 50px;
  }

  .counselling-faq-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .faq-question {
    align-items: flex-start;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .focus-area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .focus-area-item:nth-child(2n) {
    border-right: none;
  }
}



/* =========================================
   Who Support Is For Section
========================================= */

.support-for-section {
  width: 100%;
  background: #FAF9F6;
  padding: 60px 70px;
  box-sizing: border-box;
}

.support-for-container {
  width: 100%;
  margin: 0 auto;
}

.section-title.support-for-title {
  text-align: center;
  margin-bottom: 50px;
}

.support-for-top-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

.support-for-question-block {
  width: 100%;
}

.support-for-question {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.support-for-question span {
  width: 30px;
  height: 30px;
  background: #d9c5a3;
  color: #354230;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.support-for-question h3 {
  font-family: "The Seasons", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: #354230;
  margin: 0;
}

.support-for-list {
  margin: 0;
  padding-left: 30px;
}

.support-for-list li {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.35;
  color: #354230;
  margin-bottom: 9px;
}

.support-for-bottom-block {
  width: 100%;
  margin-top: 34px;
}

.support-for-answer {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 7px;
  padding: 16px 14px;
  box-sizing: border-box;
  background:
    linear-gradient(#FAF9F6, #FAF9F6) padding-box,
    linear-gradient(90deg, #d9c5a3 0%, #354230 100%) border-box;
}

.support-for-answer p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
  color: #354230;
  margin: 0;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .support-for-section {
    padding: 55px 40px;
  }

  .support-for-top-grid {
    gap: 45px;
  }

  .support-for-question h3 {
    font-size: 18px;
  }

  .support-for-list {
    padding-left: 46px;
  }
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .support-for-section {
    padding: 45px 18px 50px;
  }

  .section-title.support-for-title {
    margin-bottom: 34px;
  }

  .support-for-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .support-for-question {
    align-items: flex-start;
  }

  .support-for-question h3 {
    font-size: 17px;
  }

  .support-for-list {
    padding-left: 28px;
  }

  .support-for-list li {
    font-size: 16px;
    line-height: 1.4;
  }
}


/* =========================================
   Session FAQ Shared Sections
========================================= */

.session-expectation-section,
.proven-support-section {
  width: 100%;
  background: #FAF9F6;
  padding: 50px 70px;
  box-sizing: border-box;
}

.proven-support-section {
  padding-top: 25px;
  padding-bottom: 60px;
}

.session-expectation-container,
.proven-support-container {
  width: 100%;
  margin: 0 auto;
}

.section-title.session-expectation-title,
.section-title.proven-support-title {
  text-align: center;
  margin-bottom: 40px;
}

.session-faq-item {
  width: 100%;
  margin-bottom: 38px;
}

.session-faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.session-faq-question span {
  width: 30px;
  height: 30px;
  background: #d9c5a3;
  color: #354230;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  flex: 0 0 auto;
}

.session-faq-question h3 {
  font-family: "The Seasons", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #354230;
  margin: 0;
}

.session-faq-answer {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 7px;
  padding: 16px 14px;
  box-sizing: border-box;
  background:
    linear-gradient(#FAF9F6, #FAF9F6) padding-box,
    linear-gradient(
      90deg,
      #d9c5a3 0%,
      #354230 100%
    ) border-box;
}

.session-faq-answer p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
  color: #354230;
  margin: 0;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .session-expectation-section,
  .proven-support-section {
    padding: 45px 18px 40px;
  }

  .section-title.session-expectation-title,
  .section-title.proven-support-title {
    margin-bottom: 34px;
  }

  .session-faq-question {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .session-faq-question h3 {
    font-size: 17px;
  }

  .session-faq-item {
    margin-bottom: 32px;
  }
}