@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
h1 {
    font-family: "Ivy Presto Headline", serif;
    font-weight: 600;
    line-height: 100%;
    font-size: 84px;
}
span {
    font-family: "Ivy Presto Display", serif;
    font-weight: 300;
    font-style: italic;
}
h2 {
    font-family: "Ivy Presto Headline", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 110%;
}
h3 {
   font-family: "Ivy Presto Headline", serif;
   font-size: 56px;
   font-weight: 600;
   line-height: 110%;
}
h4 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}
h6 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 24px;
  font-weight: 600;
}
p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
}
b {
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dark-blue: #152257;
    --dark-purple: #672076;
    --light-blue: #7CA6DB;
    --orange: #E4562E;
    --magenta: #C80181;
    --white: #fff;
    --black: #101010;
    --gray: #FAFAF8;
    --pale-bule: #E2EFFF;
    --periwinkle: #6B7FD2;
}
.btn.magenta{
    background-color: var(--magenta);
    color: var(--white);
    padding: 16px 24px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    display: flex;
    text-align: center;
    gap: 10px;
}
.btn {
    background-color: none;
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    justify-content: center;
    border: 1px solid var(--white);

}
@media (max-width: 1024px) {
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 50px;
  }
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
}

/* ======================================== */
.hero-wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background-image: url("/assets/faq.png");
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  align-items: center;
}

.site-header {
  width: 100%;
  padding: 25px 24px;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo img {
  width: 230px;
  height: 45px;
}

.nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent; 
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  font-weight: 600;
  border-bottom-color: var(--white);
  opacity: 1;
}

.header-btn {
  width: 125px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 14px 24px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  width: 100%;
  max-width: 1400px;
  justify-content: end;
}

.hero-content {
  padding: 0px 0px 20px 0px;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 60px;
  }
  .hero-content {
    gap: 30px;
  }
  .hero {
    justify-content: start;
    padding: 0 20px;
    align-items: end;
  }
}
@media (max-width: 991px) {
  .nav {
    display: none;      
    flex-direction: column;
    gap: 15px;
    background: var(--magenta);
    padding: 20px;
    position: absolute;
    top: 90px;           
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav.active {
    display: flex;      
  }
  .menu-toggle svg {
    color: var(--white);
    width: 32px;
    height: 32px;
  }
  .menu-toggle {
    display: block;      
  }
  .nav-menu.active {
    display: block; 
  }
  .header-btn {
    display: none;
  }
  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 0px 20px;
  }
}

/* About DLP section */
.about-section {
  margin: 0 auto;
  justify-items: center;
  padding: 136px 20px;
}

.about-content {
  max-width: 1086px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 75px;
  align-items: center;
}

.about-heading {
  max-width: 435px;
  width: 100%;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.about-heading span {
  color: var(--magenta);
}

.about-heading img {
  width: 430px;
}

.faq-container {
  max-width: 1085px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.faq-item {
  width: 100%;
  justify-items: center;
}

.faq-item.active {
  width: 100%;
}

.faq-question {
  width: 100%;
  cursor: pointer;
  padding: 0px 62px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 45px 0px;
  height: 100px;
}

.faq-item.active
.faq-question  {
  background-color: var(--magenta);
  color: var(--white);
  width: 100%;
}

.faq-item 
.faq-question {
  background-color: var(--periwinkle);
  color: var(--white);
}

.faq-question h4 {
  font-weight: 300;
  font-style: italic;
}

.faq-question::after {
  content: "+";
  font-size: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: max-content;
  width: 890px;
  padding: 45px 0px 0px;
}

.faq-answer ul li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-left: 34px;
}
@media (max-width: 768px) {
  .about-section {
    padding: 50px 20px;
  }
  .about-content {
    gap: 50px;
  }
  .faq-item.active .faq-answer {
    width: 100%;
  }
  .about-heading img {
    width: 310px;
  }
  .faq-question {
    padding: 0px 25px;
    height: 80px;
  }
}


/* Medical Disclaimer Section */
.medical-disclaimer {
  padding: 104px 20px;
  background-color: var(--dark-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 105px;
}

.medical-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.medical-points-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 138px;
}

.medical-card {
  display: flex;
  flex-direction: column;
  gap: 45px;
  max-width: 634px;
}

.medical-card_heading {
  background: var(--white);
  border-radius: 45px 0px;
  height: 105px;
  align-content: center;
  padding: 10px 0px 10px 55px;
}

.medical-card span {
  font-size: 32px;
  color: var(--magenta);
  line-height: 37px;
}

.medical-card ul {
  padding-left: 34px;
}

.medical-card ul li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
}

@media (max-width: 1024px) {
  .medical-points-container {
    gap: 50px 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .medical-card_heading {
    padding: 20px;
  }
  .medical-card span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .medical-points-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .medical-disclaimer {
    padding: 50px 20px;
  }
  .medical-disclaimer {
    gap: 50px;
  }
  .medical-card span {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .medical-card span {
    font-size: 20px;
  }
  .medical-card {
    gap: 25px;
  }
  .medical-points-container {
    gap: 0px;
  }
}


/* Footer */
.site-footer {
  background: var(--white);
  color: #1E285F;
  padding: 58px 20px 65px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
}

.footer-brand {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand img {
  width:  230px;
  height: 50px;
}

.footer-brand p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-menu_wrapper {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-col a {
  font-family: "Poppins", sans-serif;
  color: #1E285F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-col a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-col a.active {
  position: relative;
  display: inline-block;
}

.footer-col a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-menu_right {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.footer-menu_privacy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu_privacy h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu_privacy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-menu_privacy a {
  font-family: "Poppins", sans-serif;
  color: #1E285F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-menu_privacy a.active {
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: #1E285F;
}

.footer-contact_wrapper h6{
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-contact_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contact p{
  font-family: "Ivy Presto Display";
  font-size: 18px;
  font-style: italic;
}

.footer-contact a{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #1E285F;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-bottom p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-bottom small {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-menu_wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .site-footer {
    padding: 40px 25px;
  }

  .footer-menu_wrapper {
    flex-direction: column;
  }
}