/* FAQ Accordion Styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 2px solid rgba(0,197,184,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0,197,184,0.25);
  box-shadow: 0 4px 20px rgba(0,197,184,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background: rgba(0,197,184,0.03);
}

.faq-question[aria-expanded="true"] {
  background: rgba(0,197,184,0.05);
  border-bottom: 2px solid rgba(0,197,184,0.1);
}

.faq-number {
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 32px;
}

.faq-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
    gap: 12px;
  }
  
  .faq-number {
    font-size: 16px;
    min-width: 28px;
  }
  
  .faq-text {
    font-size: 16px;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }
  
  .faq-answer.active {
    padding: 0 20px 20px 56px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 16px;
    gap: 10px;
  }
  
  .faq-number {
    font-size: 15px;
    min-width: 24px;
  }
  
  .faq-text {
    font-size: 15px;
  }
  
  .faq-answer.active {
    padding: 0 16px 16px 50px;
  }
}
