/* Genel Akordeon Kutusu */
.accordion {
  width: auto;
  margin: auto;
  margin-top: 120px;
  margin-bottom: 120px;
}

/* Her bir akordeon elemanı için stiller */
.accordion-item {
  margin-bottom: 20px; /* Öğeler arasındaki boşluğu artırdık */
}

/* Akordeon başlığı için stiller */
.accordion-header {
  background-color: #ebe8f4;
  padding: 30px;
  
  font-size: 2em;
  font-weight: bold;
  color: #474747;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #b8a0ff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 0;
}


.accordion-header + .accordion-content {
  margin-top: 0;
}

/* Akordeon içeriği (formun kendisi) için stiller */
.accordion-content {
  transition: max-height 0.8s ease;
  padding: 10px;
  overflow: hidden;
  background-color: #ffffff;
  color: rgb(98, 98, 98);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  max-height: 1500px;
  display: block;
  max-width: 600px;
  margin: 0 auto; /* BOŞLUK PROBLEMİNİ ÇÖZEN KISIM */
  border: 2px solid #b8a0ff;
  border-top: none; /* Aradaki kenarlığı kaldır */
}




/* Ana form kapsayıcısı için stiller */
.application-form-container {
  max-width: 600px;
  margin: 0; /* İçteki div'in dış boşluğunu kaldırdık */
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
  border: none; /* İçteki form kapsayıcısının kenarlığını kaldırdık */
}

/* Form başlığı ve alt metin için stiller */
.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-header h2 {
  color: #2b2b2b;
  margin: 0;
  font-size: 2em;
}

.form-header p {
  color: #454545;
  margin-top: 5px;
  font-size: 1.1em;
}

/* Her bir form grubu için stiller */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #454545;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #b8a0ff;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #a789ff;
  box-shadow: 0 0 8px rgba(138, 43, 226, 0.2);
  outline: none;
}

/* Gönder butonu için stiller */
.submit-button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #3a3a3a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 12px;
}

.submit-button:hover {
  background-color: #b8a0ff;
  transform: translateY(-2px);
}


.intro-content {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
  color: #333;
  text-align: left;
  padding: 10px;
  margin-top: -40px;
}

.intro-content h1 {
  font-size: 1.2em;
  color: #9c7ddf;
  margin-bottom: 0.5em;
  text-align: left;
}

.intro-content strong {
  font-weight: bold;
  color: #555;

}

.intro-content ul {
  list-style-type: disc;
  padding-left: 0;
  margin-right: 20px;
  text-align: left;
}

.intro-content ul li {
  margin-bottom: 0.3em;
}

.intro-content ul li strong {
  text-align: left;
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  width: auto;
}

.intro-content p {
  margin-bottom: 1em;
}

.rating-section {
  font-family: Arial, sans-serif;
  margin: 20px 0;
}

.rating-question {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #454545;
}

.rating-question .required {
  color: rgb(140, 137, 228);
}

.rating-scale {
  display: flex;
  align-items: center;
  gap: 15px;
}

.scale-label {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.radio-group {
  display: flex;
  gap: 10px;
}

.radio-group label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group span {
  width: 28px;
  height: 28px;
  border: 2px solid #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #555;
}

.radio-group input[type="radio"]:checked + span {
  border-color: #9c7ddf; /* morumsu-pembe */
  background-color: #f8e1eb;
  color: #9c7ddf;
  font-weight: bold;
}
