.faq-section {
  padding: 20px;
  background-color: #f4f7fb;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
}

.faq-title {
  font-size: 24px;
  font-weight: 600;
  color: #d11a38;
  text-align: center;
  margin-bottom: 20px;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  margin-bottom: 10px;
}
.faq-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  position: relative; /* Ok için konumlandırma */
}

.faq-button:hover {
  background-color: #e6f0ff;
}

.faq-button::after {
  content: "\25BC"; /* Aşağı ok karakteri */
  font-size: 15px;
  color: #1a76d1; /* Mavi renk */
  position: absolute;
  right: 15px; /* Okun sağda olması için mesafe */
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease; /* Geçiş efekti */
}

.faq-answer {
  display: none;
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-left: 3px solid #1a76d1;
  font-size: 16px;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888;
}
