.faq-section {
    width: 100%;
    height: 100vh;
    background-color: #CCDCE6;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: #445;
}

.faq-title {
  font-size: 36px;
  color: #002244;
  font-weight: bold;
}

.faq-title .highlight {
  color: #ef4444;
}

.faq-item {
  background: #99b7cf;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 300px;
}