/* ---------- FAQ PAGE ---------- */
.faq-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-size: 2.5rem;
  color: #1e3a35;
  margin-bottom: 0.5rem;
}

.faq-header p {
  font-size: 1.1rem;
  color: #666;
}

.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section h2 {
  font-size: 1.5rem;
  color: #1e3a35;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #B7E35A;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a35;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #B7E35A;
}

.faq-item.active .faq-question {
  background-color: #fff;
  border-bottom: 2px solid #B7E35A;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1rem 1.5rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.faq-answer a {
  color: #B7E35A;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  background: linear-gradient(135deg, #1e3a35 0%, #2a5250 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.faq-cta a {
  color: white;
  text-decoration: none;
}

.btn-cta {
  display: inline-block;
  background-color: #B7E35A;
  color: #1e3a35;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background-color: #a3d044;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .faq-container {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .faq-header h1 {
    font-size: 1.8rem;
  }

  .faq-section h2 {
    font-size: 1.2rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .faq-answer p {
    padding: 1rem;
  }
}
