body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Background */
.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 320px;
  background-color: #F9D70B;
  z-index: 1;
}

.faq-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
  padding: 40px 20px;
}

.faq-title {
  color: #347a3b;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.faq-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Kolom kiri */
.faq-left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.faq-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: cover;
}

.faq-desc {
  color: #27735c;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tombol WhatsApp */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.wa-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

/* Kolom kanan */
.faq-right {
  flex: 1.2;
  min-width: 350px;
}

/* FAQ card */
.faq-item {
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 18px;
  box-shadow: 8px 8px 0px rgba(143, 197, 123, 0.5);
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: #347a3b;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  color: #347a3b;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #b69400;
  font-size: 15px;
  line-height: 1.6;
  transition: all 0.4s ease;
}

/* Saat aktif */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 25px 20px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

/* Responsif */
@media (max-width: 768px) {
  .faq-content {
    flex-direction: column;
  }

  .faq-bg {
    height: 220px;
  }

  .faq-title {
    font-size: 2.5rem;
  }
}

.faq-section {
  position: relative;
  padding-top: 70px; 
}

.faq-desc {
  color: #347a3b;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}
