/* Hakkımızda Bölümü */
.about-section {
  background: linear-gradient(135deg, #fafbff 0%, #f4f3fb 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  margin: 2rem 0;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* İstatistik kartları kaldırıldı */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background-color: var(--primary-light);
  border-radius: 50%;
  color: var(--primary);
  margin-top: 0.2rem;
}

.feature-text {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.about-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.about-cta {
  background: linear-gradient(90deg, var(--primary) 0%, #5e7fff 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(109, 66, 230, 0.3);
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(109, 66, 230, 0.4);
}

/* Responsive Hakkımızda Stilleri */
/* Responsive düzenlemeler */

@media (max-width: 600px) {
  .about-feature-item {
    align-items: flex-start;
  }
  
  .feature-icon {
    margin-top: 0.3rem;
  }
}
