body {
  background-color: #0d0d0d;
  color: #FFD700;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 30px 15px;
}

.services-container {
  max-width: 1100px;
  margin: auto;
  background: rgba(20, 20, 20, 0.95);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

h1 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

h1 i {
  margin-right: 10px;
}

.intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f9f9f9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.service-card {
  background: #1a1a1a;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.service-icon {
  font-size: 30px;
  color: #FFD700;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #FFD700;
}

.service-card p {
  font-size: 0.95em;
  color: #ddd;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  background-color: #FFD700;
  color: #111;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-btn i {
  margin-right: 8px;
}

.cta-btn:hover {
  background-color: #e6c200;
}