:root {
  --primary-blue: #0d6efd;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
.hero {
  background: linear-gradient(135deg, #0d6efd 0%, #4a90e2 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}
.section-title {
  font-weight: 600;
  margin-bottom: 40px;
  color: #0d6efd;
}
.service-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  height: 100%;
  background: white;
  border: none;
}
.service-card:hover {
  transform: translateY(-5px);
}
.contact-info i {
  color: #0d6efd;
  margin-right: 10px;
}
footer {
  background-color: #343a40;
  color: #ddd;
  padding: 30px 0;
  text-align: center;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}