/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: #f9fafb;
}

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

.faq-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}

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

.faq-item[open] {
  box-shadow: 0 4px 12px rgba(29, 95, 107, 0.15);
  border-color: #1D5F6B;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #1f2937;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: #1D5F6B;
}

.faq-item[open] .faq-question {
  color: #1D5F6B;
  border-bottom: 1px solid #e5e7eb;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: #1D5F6B;
}

.faq-answer {
  padding: 20px 24px;
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
  background: #fafafa;
}

.faq-answer p {
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }
}
