/* ===== CLEAN FAQ SECTION STYLES ===== */
.faq {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
}

.faq .section-title {
  margin-bottom: 40px;
}

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

.faq .faq-container .faq-item {
  background: #ffffff;
  border: 1px solid rgba(14,37,55,0.08);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(14,37,55,0.06);
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  padding: 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #0E2537;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
}

.faq .faq-container .faq-item h3 i.bi-question-circle {
  margin-right: 15px;
  font-size: 24px;
  color: #F5880A;
  flex-shrink: 0;
}

.faq .faq-container .faq-item .faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.6;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  color: #0E2537 !important;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.faq .faq-container .faq-item.faq-active .faq-content {
  padding: 0 25px 25px 25px;
  max-height: 500px;
  opacity: 1;
}

.faq .faq-container .faq-item .faq-toggle {
  font-size: 24px;
  color: #F5880A;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq .faq-container .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #E67E22;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(14,37,55,0.1);
  border-color: rgba(245,136,10,0.2);
}

.faq .faq-container .faq-item.faq-active {
  background: #fff;
  border-color: #F5880A;
  box-shadow: 0 12px 32px rgba(245,136,10,0.15);
}

.faq .faq-container .faq-item.faq-active h3 {
  color: #F5880A;
}

@media (max-width: 768px) {
  .faq .faq-container .faq-item h3 {
    font-size: 16px;
    padding: 20px;
  }

  .faq .faq-container .faq-item .faq-content {
    padding: 0 20px;
  }

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