
h1 {
  text-align: center;
  color: #0c1020;
}

.info-text {
  max-width: 1080px;
  margin: 0 auto 20px;
  color: #444;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  padding: 0 15px;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 225px;
}

.accordion-item {
  width: 100%;
  max-width: 1080px;
  margin-bottom: 10px;
}

.accordion {
  background-color: #fff;
  color: #0c1020;
  cursor: pointer;
  padding: 16px 10px;
  width: 100%;
  border: 1px solid #ddd;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.3s;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.accordion:hover {
  background-color: #eaf2ff;
}

.accordion.active {
  background-color: #0c1020;
  color: #fff;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

.panel {
  display: none;
  overflow: hidden;
  width: 100%;
  padding: 0 25px;
  background-color: white;
  border-left: 2px solid #0c1020;
  border-right: 2px solid #0c1020;
  border-bottom: 2px solid #0c1020;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

.panel p {
  color: black;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #eee;
}

.panel p:last-child {
  border-bottom: none;
}

/* 💡 Mobilde tam genişlik ayarı */
@media (max-width: 768px) {
  .info-text,
  .accordion-item {
    max-width: 100%;
  }
}

  

