.container {
  max-width: 1200px;
}

.faq-category {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid #0d6efd;
}

.faq-item {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: #212529;
  cursor: pointer;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question.active {
  transition: all 0.3s ease;
  background: #cae0f7;
  border-radius: 20px;
  padding: 10px;
}

.faq-question:hover {
  color: #0d6efd;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0;
  color: #6c757d;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 1rem 0;
  max-height: 1000px;
}

.contact-cta {
  background: #0d6efd;
  border-radius: 15px;
  padding: 3rem 2rem;
  color: white;
  text-align: center;
  margin: 3rem 0;
}

.badge-category {
  background-color: #0d6efd;
  color: white;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-left: 1rem;
}

.search-box {
  max-width: 500px;
  margin: 0 auto 3rem;
}

.input-group {
  display: flex;
}

.search-box input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
}

.search-box button {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin: 0.5rem;
  border: 2px solid transparent;
}

.btn-light {
  background: white;
  color: #0d6efd;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-success {
  background: #28a745;
  color: white;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.alert-info {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.alert-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.table th, .table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  text-align: left;
}

.table thead {
  background: #f8f9fa;
}

.text-center {
  text-align: center;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 1rem;
}

.display-4 {
  font-size: 2.5rem;
  font-weight: 700;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-muted {
  color: #6c757d;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }
}
.gap-3 {
  gap: 1rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.fs-4 {
  font-size: 1.5rem;
}

.h3 {
  font-size: 1.75rem;
}

.text-primary {
  color: #0d6efd;
}

.text-success {
  color: #28a745;
}

.text-warning {
  color: #ffc107;
}

/*# sourceMappingURL=faq.css.map */
