@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  color: #1e1e1e;
} 

/* Header */
.faq-header {
    margin: 0 auto;
    background-color: #1E4B8B;
    color: #ffffff;
    text-align: center;
    padding: 5rem 0.5rem;
}

.faq-header h1 {
    font-family: "Merriweather", serif;
    font-size: 64px !important;
    line-height: 28px !important;
    font-weight: 400;
}
@media (max-width: 10248px) {
 .faq-header h1 {
    font-size: 45px;
    line-height: 55px;
}
  
}
/* FAQ Section */
.faq-container {
  max-width: 1920px;
  padding: 0px 130px;
  margin: 2rem auto;
}
@media(max-width:1600px) {
  .faq-container {
    padding: 30px 80px;
}
}
@media(max-width:1200px) {
  .faq-container {
    padding: 30px 40px;
}
}
@media(max-width:600px) {
  .faq-container {
    padding: 30px 20px;
}
}
/* FAQ Question */
.faq-question {
    background: none;
    border: none;
    outline: none;
    color: #4A90E2;
    font-size: 32px;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    text-decoration: underline;
    font-family: "Merriweather", serif;
    width: 100%;
    line-height: 28px;
    font-weight: 400;
}

/* FAQ Answer */
.faq-answer {
    padding: 1rem 0 2rem 0;
    font-family: "Montserrat", sans-serif !important;
    font-size: 24px;
    padding-left: 29px;
    padding-top: 0px;
    line-height: 28px;
    font-weight: 400;
}
.list li {
    font-family: "Montserrat", sans-serif !important;
}

.faq-answer a { 
  color: #1E1E1E;
  text-decoration: none;
}

.list {
  max-width: 700px;
  /* margin: 2rem auto; */
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.list h4 {
  color: #1f4b89;
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif !important;

}

.list ul {
  list-style: disc;
  margin-left: 1.5rem;

}

.list li {
  margin-bottom: 0.5rem;
}

.cta-section {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem 60px;
  max-width: 1920px;
  /* background-color: #f0f8fb; */
  border-radius: 12px;
}

.cta-section h2 {
    font-size: 48px;
    color: #1E1E1E;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Merriweather', sans-serif;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #0097a7;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

/* .cta-button:hover,
.cta-button:focus {
  background-color: #007c8c;
  outline: none;
} */
@media (max-width: 1140px) {
  .cta-section h2 {
    line-height: 55px;
}
}
@media (max-width: 768px) {
  /* .faq-header h1 {
    font-size: 1.6rem;
  } */

  /* .faq-container {
    padding: 1rem;
  } */

  .faq-item {
    /* padding: 1rem;
    margin-bottom: 1.25rem; */
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding-top: 0.5rem;
  }

  .list h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .list ul {
    margin-left: 1rem;
  }

  .list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 0rem 1rem;
    margin-top: 0px;
  }

  .cta-section h2 {
    font-size: 26px;
    margin-bottom: 1rem;
    line-height: 28px;
    font-family: 'Merriweather', sans-serif;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width:425px) {
  .faq-header h1 {
    font-size: 26px;
    line-height: 32px;
  }

  .faq-question {
    font-size: 20px;
    /* text-align: center; */
  }

  .faq-answer {
    font-size: 14px;
  }

}