/* FAQ Section */
.faq-section {
  background: white;
  padding: 80px 0;
  width: 100%;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.faq-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #333, #f7be16);
  margin: 20px auto 0;
  border-radius: 2px;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 60px;
  text-align: left;
}

.faq-item {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: #f7be16;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-question i {
  color: #f7be16;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  padding-top: 10px;
}

.faq-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-cta h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-cta p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.faq-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 160px;
  justify-content: center;
}

.faq-btn.primary {
  background: linear-gradient(135deg, #f7be16, #ffc107);
  color: white;
  box-shadow: 0 6px 20px rgba(247, 190, 22, 0.3);
}

.faq-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 190, 22, 0.4);
}

.faq-btn.secondary {
  background: #25d366;
  color: white;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.faq-btn.secondary:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 2.2rem;
  }

  .faq-question {
    padding: 20px 25px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px;
  }

  .faq-cta {
    padding: 40px 30px;
  }

  .faq-cta h3 {
    font-size: 1.5rem;
  }

  .faq-buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-btn {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 18px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-cta {
    padding: 30px 25px;
  }

  .faq-cta h3 {
    font-size: 1.3rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }
}
