@charset "utf-8";
/* CSS Document */

.faq-accordion {
  max-width: 800px;
/*  margin: 0 auto;*/
	
 
margin-top: 0 !important;
  padding-top: 0 !important;
	padding: 0 20px 20px 20px; /* top | right | bottom | left */
	
}

.faq-accordion h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.accordion-item + .accordion-item {
  margin-top: 1rem;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* metin solda, ikon sağda */
  gap: 10px;
 border-bottom: none;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #102B48;
  padding: 15px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #102B48;

  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.accordion-title {
  flex: 1; /* metin taşsa bile ikon sabit kalır */
  text-align: left;
}

.accordion-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* aktif durumda */
.accordion-header.active {
  background-color: #102B48;
  color: #ffffff;
}

.accordion-header.active .accordion-icon {
  content: '−';
  transform: rotate(180deg);
}

/* JS ile ikon değişeceği için pseudo gerekmez */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-top: none;
  background-color: #fff;
	 border: 1px solid #102B48;
}

.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  .accordion-header {
  font-size: 1.5rem;
    padding: 12px 15px;
 
    margin: 0 auto 1rem;
  }
}
