:root {
  --primary-color: #004c7f;
  --primary-light: #e7f1fa;
  --accent-color: #f9be3e;
  --accent-light: #ffde7a;
  --text-dark: #222f3e;
  --shadow-color: rgba(33,37,41,0.08);
  --transition-speed: 0.3s;
  --card-elevation: 0 4px 16px;
  --card-hover-elevation: 0 8px 24px;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  scroll-behavior: smooth;
  background-color: #f5f6fa;
  color: var(--text-dark);
}

.hero {
  background: linear-gradient(120deg, var(--primary-color) 80%, #fcf6e3 100%), url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?fit=crop&w=1350&q=80') center/cover no-repeat;
  color: white;
  padding: 140px 0 100px 0;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 24, 49, 0.7);
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.divider {
  height: 3px; width: 60px; background: #f9be3e; margin: 0 auto 35px;
  border-radius: 8px;
  cursor: pointer;
}

/* Padding pour la colonne image sur mobile */
@media (max-width: 768px) {
  .col-lg-6.order-2 {
    padding-bottom: 3rem;
  }
}

.card {
  border: none;
  border-radius: 1rem;
  box-shadow: var(--card-elevation) var(--shadow-color);
  margin-bottom: 30px;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  background: white;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-elevation) var(--shadow-color);
}

.card:hover .card-body {
  color: var(--primary-color);
}

.bg-light-blue {
  background-color: #e7f1fa;
}

.icon-box {
  font-size: 2.3rem;
  color: var(--accent-color);
  margin-bottom: 10px;
  cursor: pointer;
}

.value-list li {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.service-list li {
  margin-bottom: 10px;
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 10px 0 rgba(33,37,41,0.07);
  padding: 25px;
  margin: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  color: #004c7f;
  cursor: pointer;
}

footer {
  background: var(--text-dark);
  color: #fff;
  padding: 30px 0 10px 0;
}

footer a {
  color: var(--accent-color);
  text-decoration: underline;
  cursor: pointer;
}

.badge {
  padding: 0.5em 0.8em;
  border-radius: 0.5rem;
  cursor: pointer;
}

.btn-main {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 2rem;
  padding: 12px 36px;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 var(--shadow-color);
  transition: all var(--transition-speed);
  cursor: pointer;
}

.btn-main:hover {
  background: var(--accent-light);
  color: var(--primary-color);
}

.nav-link {
  color: #fff;
  transition: color var(--transition-speed);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent-color);
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 40%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0; top: 0; height: 100%; width: 100%; position: absolute;
}

@media (max-width: 991px) {
  .hero { padding: 90px 0 60px 0;}
  .section-title {font-size: 1.7rem;}
}
