.faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 50px; /* space for sticky navbar */
}

.faq-header h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-header p {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-arrow {
  font-size: 30px; /* increase from default, adjust as needed */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg); /* arrow points up when active */
}

.faq-answer {
  display: none;
  margin-top: 12px;
  color: #555;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-btn {
  display: block;
  margin: 40px auto 0;
  padding: 14px 30px;
  background-color: var(--green);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #019a40;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .faq-section {
    padding: 100px 20px 50px;
  }

  .faq-header h1 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-container {
    gap: 15px;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-arrow {
    font-size: 24px;
  }

  .faq-answer {
    font-size: 15px;
  }

  .contact-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 80px 15px 40px;
    margin-top: 25px;
  }

  .faq-header h1 {
    font-size: 24px;
  }

  .faq-header p {
    font-size: 15px;
  }

  .faq-item {
    padding: 12px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-arrow {
    font-size: 20px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
