.neden-pars {
  padding: 140px 50px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #2a2a3c;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #fcb900;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 sütun */
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  text-align: left;
}

.feature-box {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.icon {
  font-size: 40px;
  color: #f44336;
  margin-bottom: 12px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2a2a3c;
}

.feature-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .icon {
      font-size: 40px;
      color: #f44336;
      margin-bottom: 12px;
    }

    .feature-box h3 {
      font-size: 22;
      font-weight: 700;
      margin-bottom: 10px;
      color: #2a2a3c;
    }

    .feature-box p {
      font-size: 17px;
      color: #555;
      line-height: 1.6;
    }
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
