
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
  margin: 0;
  padding: 0;
}

.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 26px;
  color: #c29825;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  background: #1c1c1c;
  color: #fff;
  width: 100%;
  max-width: 340px;
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.service-card a {
  text-decoration: none;
  color: inherit;
}

.service-card .icon {
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  color: #FFD700;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #ddd;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}
