.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Raleway', sans-serif;
}

.services h2 {
  font-size: 28px;
  color: #004040;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: left;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin-bottom: 15px;
}

.service-card a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.service-card.blue a {  
  color: #0058a3;
}

.service-card.red a {
  color: #d92d20;
}
