/* =====================
   FAQ SECTION
===================== */
.faq-section {
  font-family: 'Questrial', sans-serif;
  padding: 60px 20px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT CONTENT */
.faq-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.faq-left p {
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
}

.faq-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.faq-buttons a {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  background: #f5b547;
  transition: background 0.3s;
}

.faq-buttons a:hover {
  background: #e0a53e;
}

/* RIGHT FAQ */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #e6e6e6;
  border-radius: 20px;
  padding: 18px 22px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

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

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .faq-left h2 {
    font-size: 26px;
  }

  .faq-buttons {
    flex-direction: column;
  }
}