.hizmetler-header {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f8f9fa;
}

.hizmetler-header h1 {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 10px;
}

.hizmetler-header p {
  font-size: 1.2rem;
  color: #555;
}

.hizmetler-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 100px;
  background-color: #fff;
}

.hizmet-card {
  background: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hizmet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hizmet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hizmet-card h2 {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 10px;
}

.hizmet-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-hizmet {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff9900;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hizmet:hover {
  background-color: #e68a00;
}

/* Responsive */
@media (max-width: 768px) {
  .hizmetler-header h1 {
    font-size: 2rem;
  }
  .hizmetler-header p {
    font-size: 1rem;
  }
  .hizmetler-content {
    padding: 40px 20px;
    gap: 20px;
  }
}
