.faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #006efe 0%, #0056d6 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 24px;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1a2e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #006efe;
  box-shadow: 0 4px 20px rgba(0, 110, 254, 0.08);
}

.faq-item.active {
  border-color: #006efe;
  box-shadow: 0 8px 32px rgba(0, 110, 254, 0.12);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-item.active .faq-question {
  padding-bottom: 16px;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 600;
  color: #0b1a2e;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #006efe;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* CTA */
.faq-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #006efe 0%, #0056d6 100%);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 110, 254, 0.2);
}

.faq-cta-text {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.faq-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: white;
  color: #006efe;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  background: #f8fafc;
}

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

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

  .faq-title {
    font-size: 32px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-item.active .faq-question {
    padding-bottom: 12px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-cta {
    padding: 32px 24px;
  }

  .faq-cta-text {
    font-size: 20px;
  }

  .faq-list {
    margin-bottom: 40px;
  }
}
