/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: #f9f8f6;
  padding: 80px 0;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.faq-section .main-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.faq-section .main-section-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* FAQ Question Button */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--primary-color) !important;
}

.faq-item.active .faq-question {
  background: var(--primary-color) !important;
  color: var(--primary-color);
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.3px;
  flex: 1;
}

.faq-item.active .faq-question-text {
  color: #1a1a1a;
}

/* Toggle Icon */
.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
  color: #666;
}

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

/* FAQ Answer */
.faq-answer {
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer-content {
  padding: 25px 30px 25px 30px;
 
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer-content p {
  margin: 0 0 15px 0;
}

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

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

  .faq-section .main-section-title {
    font-size: 2rem;
  }

  .faq-section .main-section-desc {
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px;
  }

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

  .faq-question-text {
    font-size: 1rem;
  }
}

@media (max-width: 680px) {
  .faq-section {
    padding: 40px 0;
  }

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

  .faq-section .main-section-desc {
    font-size: 0.95rem;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-answer-content {
    padding: 20px;
    font-size: 0.95rem;
  }

 

  .faq-toggle-icon {
    width: 20px;
    height: 20px;
  }
}
