.about-section {
  padding: 60px 0;
  background-color: #fff;
  color: #182a40;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.about-section .container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  position: relative;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  /* justify-content: center; istenmiyor, başlık sola yaslı kalacak */
}

.section-title-line {
  width: 6px;
  height: 40px;
  background-color: #ffe000; /* Güven Tur Sarısı */
  margin-right: 12px;
}

.section-title {
  font-size: 2rem;
  color: #0d325b; /* Güven Tur Laciverti */
  font-weight: bold;
  margin: 0;
}


.sub-title {
  font-size: 1.5rem;
  color: #0d325b;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-section .content {
  line-height: 1.7;
  font-size: 1rem;
}

.about-section .content p {
  margin-bottom: 16px;
}

.about-section .content strong {
  font-weight: 700;
  color: #0d325b;
}

.features-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.features-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffe000;
}

@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .sub-title {
    font-size: 1.3rem;
  }

  .section-title-wrapper {
    justify-content: flex-start;
  }
}
