/* Services Page Styles */
.services-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-hero {
  background-color: #0a5c8a;
  color: white;
  text-align: center;
  padding: 60px 0;
  margin-bottom: 40px;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.subheading {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid-section {
  padding: 20px 0 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #e1e1e1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #0a5c8a;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  min-height: 60px;
}

.service-price {
  font-weight: bold;
  color: #2a9d8f;
  font-size: 1.2rem;
  margin: 20px 0;
}

.btn-learn-more {
  display: inline-block;
  background-color: #0a5c8a;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #084b73;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero h1 {
    font-size: 2rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .service-card {
    padding: 20px;
  }
}