
/* --- STYLE DE LA PAGE SERVICES --- */
.services-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8faff, #e9f1ff);
}

.services-title {
  text-align: center;
  font-weight: 700;
  color: #0052D4;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

.services-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFB700);
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0042b3;
}

.service-body p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

.btn-service {
  margin-top: 15px;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #FFD700, #FFB700);
  color: #000;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-service:hover {
  background: #fff;
  color: #0052D4;
  box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

@media (max-width: 768px) {
  .services-title { font-size: 1.8rem; }
}