/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-section .section-title {
  text-align: center;
  font-size: 2rem;
  color: #f0c159;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(240,193,89,0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(240,193,89,0.5);
  box-shadow: 0 4px 20px rgba(240,193,89,0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #f0c159;
}

.faq-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f0c159;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 15px auto 30px;
  line-height: 1.6;
  text-align: center;
}

/* Enhanced Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #f0c159 0%, #e6a832 100%);
  color: #1a1a2e;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(240,193,89,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(240,193,89,0.4);
  background: linear-gradient(135deg, #f5d080 0%, #f0c159 100%);
}

/* Card Enhancements */
.card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(240,193,89,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Section Improvements */
section {
  position: relative;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f0c159, #e6a832);
  border-radius: 2px;
}
