/* FAQ Section Styles */
.faq-section {
  padding: 5px 0 80px;
  background-color: #f8fafc;
  overflow: hidden;
}

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

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

.faq-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #00476b;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-header h3 .section-indicator {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #00476b;
  margin: 0 15px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 900px;
  margin: 0 auto;
}

.faq-items {
  margin-bottom: 30px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(0, 71, 107, 0.03);
}

.faq-question.active {
  background-color: rgba(0, 71, 107, 0.05);
}

.faq-question-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-right: 15px;
  flex-grow: 1;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 71, 107, 0.1);
  color: #00476b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: bold;
}

.faq-question.active .faq-icon {
  background-color: #00476b;
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 45px 20px 45px;
  color: #64748b;
  line-height: 1.7;
  font-size: 1.05rem;
}

.faq-answer-content p {
  margin-bottom: 10px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-contact {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-contact h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00476b;
  margin-bottom: 15px;
}

.faq-contact p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 20px;
}

.faq-contact-btn {
  display: inline-block;
  background-color: #00476b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-contact-btn:hover {
  background-color: #003350;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 71, 107, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .faq-section {
    padding: 2px 0 60px;
  }
  
  .faq-container {
    max-width: 95%;
  }
  
  .faq-header h3 {
    font-size: 1.8rem;
  }
  
  .faq-question {
    padding: 18px 35px;
  }
  
  .faq-question-text {
    font-size: 1.1rem;
  }
  
  .faq-answer-content {
    padding: 0 35px 18px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-container {
    max-width: 95%;
  }
  
  .faq-header h3 {
    font-size: 1.6rem;
  }
  
  .faq-header h3 .section-indicator {
    width: 30px;
    margin: 0 10px;
  }
  
  .faq-question {
    padding: 15px 30px;
  }
  
  .faq-question-text {
    font-size: 1.05rem;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  
  .faq-answer-content {
    padding: 0 30px 15px 30px;
    font-size: 0.95rem;
  }
  
  .faq-contact {
    padding: 20px;
  }
  
  .faq-contact h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .faq-header h3 {
    font-size: 1.5rem;
  }
  
  .faq-question {
    padding: 12px 20px;
  }
  
  .faq-question-text {
    font-size: 1rem;
  }
  
  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
  
  .faq-answer-content {
    padding: 0 20px 12px 20px;
    font-size: 0.9rem;
  }
}