/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Elegant — FAQ V1 Toggle
   Light Theme + Red Brand (#DC2626) + Gold Accent
   ═══════════════════════════════════════════ */

.fl-elegant-faq-v1 {
  padding: 56px 48px;
  margin-bottom: 48px;
  background: #FEFEFE;
  border: 1px solid #E5E5E5;
}

.fl-elegant-faq-v1-header {
  margin-bottom: 40px;
  text-align: center;
}

.fl-elegant-faq-v1-title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  color: #2D2D2D;
  font-family: 'Georgia', serif;
}

.fl-elegant-faq-v1-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #6B6B6B;
  font-family: 'Georgia', serif;
}

.fl-elegant-faq-v1-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fl-elegant-faq-v1-item {
  border-bottom: 1px solid #E5E5E5;
}

.fl-elegant-faq-v1-item:first-child {
  border-top: 1px solid #E5E5E5;
}

.fl-elegant-faq-v1-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #2D2D2D;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.fl-elegant-faq-v1-question:hover {
  color: #DC2626;
}

.fl-elegant-faq-v1-number {
  font-size: 14px;
  font-weight: 700;
  color: #DC2626;
  min-width: 28px;
  font-family: 'Georgia', serif;
}

.fl-elegant-faq-v1-icon {
  margin-left: auto;
  font-size: 20px;
  color: #DC2626;
  transition: transform 0.3s ease;
}

.fl-elegant-faq-v1-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.fl-elegant-faq-v1-answer p {
  margin: 0;
  padding: 0 0 24px 44px;
  font-size: 15px;
  line-height: 1.8;
  color: #6B6B6B;
  font-family: 'Georgia', serif;
}

.fl-elegant-faq-v1-item.is-open .fl-elegant-faq-v1-icon {
  transform: rotate(45deg);
}

.fl-elegant-faq-v1-item.is-open .fl-elegant-faq-v1-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .fl-elegant-faq-v1 {
    padding: 40px 24px;
  }

  .fl-elegant-faq-v1-title {
    font-size: 28px;
  }

  .fl-elegant-faq-v1-question {
    padding: 20px 0;
    font-size: 15px;
  }

  .fl-elegant-faq-v1-answer p {
    padding-left: 0;
  }
}
