
.faq {
  padding: 100px 20px;
  position: relative;
}

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

.faq-list {
  margin-bottom: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  user-select: none;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}

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

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 32px 28px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 15px;
}

.faq-cta {
  text-align: center;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.faq-cta p {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
  
  .faq-icon {
    font-size: 24px;
  }
}
