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

.services-hero {
  background-color: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
  background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                    url('../assets/images/retailer-and-grocery1.jpg');
  background-size: cover;
  background-position: center;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 700;
}

.services-hero .subheading {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
}

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

.services-grid-section {
  padding: 4rem 0;
}

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

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price {
  font-weight: 700;
  color: #27ae60;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-learn-more {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-learn-more:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-hero {
    padding: 3rem 0;
  }
  
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}