body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FEF8FA;
  color: #5c4c78;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.title {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #a48ac3;
  text-align: center;
  margin-bottom: 36px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4d9e5;
  color: #6a5a96;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.faq-question:hover {
  background-color: #e6c2d5;
}

.faq-question .icon {
  font-size: 20px;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #fff;
  border-left: 4px solid #a48ac3;
  margin-top: 6px;
  padding: 0 16px;
  border-radius: 0 0 12px 12px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 12px 16px;
}

.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Geri Bildirim Alanı */
.feedback {
  margin-top: 50px;
  text-align: center;
}
.logo-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: -20px;
}

.logo {
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.feedback h2 {
  color: #a48ac3;
  font-size: 20px;
  margin-bottom: 16px;
}

.feedback textarea {
  width: 100%;
  max-width: 600px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  resize: none;
}

.feedback button {
  margin-top: 12px;
  padding: 10px 24px;
  background-color: #f4d9e5;
  color: #6a5a96;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.feedback button:hover {
  background-color: #e4c5d8;
}
