.hero-services {
  background: linear-gradient(rgba(0, 46, 90, 0.85), rgba(0, 46, 90, 0.85)), url('../assets/images/gallery-1.png');
  background-size: cover;
  background-position: center;
  height: 60vh;
}

.services-intro {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}

.services-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #002e5a;
}

.services-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #083c98;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: #083c98;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #002e5a;
}

.service-card > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
  padding: 0.6rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-features i {
  color: #10b981;
  font-size: 1.2rem;
}

.service-card .btn-primary {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
  display: block;
}

.cta-section {
  background: linear-gradient(135deg, #002e5a 0%, #083c98 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: #083c98;
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .services-intro h2 {
    font-size: 1.6rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}
