/* FAQ Section Styles */
.faq {
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.02);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(38, 255, 122, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #26ff7a, #1ed65f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(38, 255, 122, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(38, 255, 122, 0.1);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-question {
  font-size: 20px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 16px;
  line-height: 1.4;
}

.faq-answer {
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #9ca3af;
  line-height: 1.6;
}

/* Mobile FAQ */
@media (max-width: 768px) {
  .faq {
    padding: 80px 20px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .faq-item {
    padding: 30px 20px;
  }
  
  .faq-question {
    font-size: 18px;
  }
  
  .faq-answer {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 60px 15px;
  }
  
  .faq-item {
    padding: 25px 15px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-answer {
    font-size: 13px;
  }
} 