.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: #2a2a3c;
  position: relative;
}

.services-section .section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #fcb900;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Siteyi kaplayan tam grid */
.services-grid.fullwidth {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
}

/* Responsive (isteğe bağlı) */
@media (max-width: 1400px) {
  .services-grid.fullwidth {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid.fullwidth {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid.fullwidth {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid.fullwidth {
    grid-template-columns: 1fr;
  }
}

.service-box {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-box img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px 8px;
  color: #003c71;
}

.service-description {
  font-size: 14px;
  color: #444;
  padding: 0 16px 16px;
  flex-grow: 1;
}

.more-link {
  display: block;
  padding: 12px 16px;
  color: #007dbb;
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid #eee;
  transition: color 0.3s;
}

.more-link:hover {
  color: #005f8d;
}
