/* NUMBER 3 : SIK SORULAN SORULAR */

.faq-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(221, 71, 145, 0.15);
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 3px solid #dd4791;
  color: #fff;
}
.title-white {
  color: #fff;
}
.title-pink {
  color: #dd4791;
}


.faq-item {
  background: #222;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #333;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: #dd4791;
  background: #292929;
}

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  list-style: none;
  position: relative;
  transition: color 0.3s ease;
}

.faq-item summary::before {
  content: "➤";
  color: #dd4791;
  margin-right: 12px;
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 16px;
}

.faq-item[open] summary::before {
  transform: rotate(90deg);
}

.faq-item[open] summary {
  color: #ffffff;
}

.faq-item p {
  padding: 0 24px 22px;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-container {
    padding: 20px;
  }
  .faq-title {
    font-size: 26px;
  }
  .faq-item summary {
    font-size: 16px;
  }
}






/* ------------------------------------------------------------ */