/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  /* Header transparent */
  header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Alignement logo + éléments */
  .logo {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
  }
  
  .header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  /* Style des liens */
  .header-links a {
    color: #ac0cd3;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .header-links a:hover {
    color: #0984e3;
  }
  
  /* Effet de soulignement animé */
  .header-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0984e3;
    transition: width 0.3s ease;
  }
  
  .header-links a:hover::after {
    width: 100%;
  }
  
  /* Style spécifique pour le numéro de téléphone */
  .phone a {
    background: #0984e3;
    color: white !important;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .phone a:hover {
    background: #0873c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(9, 132, 227, 0.3);
  }
  
  .phone a::after {
    display: none !important;
  }
  
  /* Drapeaux langues */
  .languages {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
  }
  
  .languages img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .languages img:hover {
    transform: scale(1.15);
  }
  
  /* Version mobile */
  .menu-toggle {
    display: none;
  }
  
  .menu-label {
    display: none;
    cursor: pointer;
    padding: 10px;
  }
  
  @media (max-width: 768px) {
    header {
        padding: 1rem;
    }
  
    .menu-label {
        display: block;
        position: relative;
        z-index: 1001;
    }
  
    .header-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 6rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: flex-start;
        gap: 2rem;
    }
  
    .menu-toggle:checked ~ .header-links {
        right: 0;
    }
  
    .menu-label {
        position: absolute;
        right: 1rem;
        top: 1.5rem;
    }
  
    .menu-label::before,
    .menu-label::after {
        content: '';
        position: absolute;
        background: #0984e3;
        height: 2px;
        width: 24px;
        transition: all 0.3s ease;
    }
  
    .menu-label::before {
        transform: translateY(-6px);
    }
  
    .menu-label::after {
        transform: translateY(6px);
    }
  
    .menu-toggle:checked ~ .menu-label::before {
        transform: rotate(45deg);
    }
  
    .menu-toggle:checked ~ .menu-label::after {
        transform: rotate(-45deg);
    }
  
    .logo {
        gap: 0;
    }
  
    .languages {
        margin-left: 0;
        justify-content: center;
    }
  }
  
  /* HERO SECTION */
  .hero {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }
  
  .hero-text {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-text h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: filter 0.3s;
  }
  
  .cta-button:hover {
    filter: brightness(1.1);
  }
  
  .hero-image {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  /* CTA SECTION */
  .cta-section {
    background-color: #ffd700;
    padding: 60px 30px;
    text-align: center;
  }
  
  .cta-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 20px;
  }
  
  .cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .why-choose {
    padding: 4rem 1rem;
    background: #f8faff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a237e;
  }
  
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .advantage-card:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    width: 60px;
    height: 60px;
    padding: 12px;
    background: #1a237e;
    border-radius: 50%;
    margin-bottom: 1rem;
    fill: white;
  }
  
  h3 {
    color: #1a237e;
    margin: 1rem 0;
    font-size: 1.3rem;
  }
  
  .price-badge {
    display: inline-block;
    background: #00c853;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .timer {
    font-family: monospace;
    color: #d50000;
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  
  .reviews {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
  }
  
  .review-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .stars {
    color: #ffd600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-weight: bold;
    color: #1a237e;
  }
  
  .platform img {
    width: 24px;
    height: 24px;
  }
  
  .contact-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  .contact-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a237e;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.2s;
  }
  
  .contact-cta a:hover {
    transform: scale(1.05);
  }
  
  @media (max-width: 768px) {
    .reviews {
      flex-direction: column;
      gap: 2rem;
    }
    
    h2 {
      font-size: 2rem;
    }
  }
  .services {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
  }
  
  .services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 4rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background: #1a237e;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
  }
  
  .service-card h3 {
    color: #1a237e;
    margin: 1rem 0;
    font-size: 1.3rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .service-card.highlight {
    background: #1a237e;
  }
  
  .service-card.highlight h3,
  .service-card.highlight p {
    color: white;
  }
  
  .service-card.highlight .service-icon {
    background: white;
  }
  
  .service-card.highlight .service-icon svg {
    fill: #1a237e;
  }
  
  @media (max-width: 768px) {
    .services h2 {
      font-size: 2rem;
      margin-bottom: 3rem;
    }
    
    .services-grid {
      gap: 1.5rem;
    }
    
    .service-card {
      padding: 1.5rem;
    }
  }
  .seo-content {
    padding: 4rem 1rem;
    background: #fff;
  }
  
  .seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .seo-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
  }
  
  .seo-card h2 {
    color: #1a237e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .seo-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .city-list ul {
    columns: 2;
    margin: 1rem 0;
  }
  
  .cta-seo {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #1a237e;
    border-radius: 8px;
    color: white;
  }
  
  .cta-seo a {
    color: white;
    text-decoration: underline;
  }
  
  .button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #00c853;
    color: white;
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  .faq-section {
    max-width: 800px;
    margin: 3rem auto;
  }
  
  @media (max-width: 768px) {
    .seo-grid {
      grid-template-columns: 1fr;
    }
    
    .city-list ul {
      columns: 1;
    }
  }
  /* SECTION TRANSFERT AÉROPORT */
  .airport-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .airport-container {
    max-width: 1100px;
    margin: auto;
  }
  
  .airport-section h2 {
    font-size: 32px;
    color: #111;
    margin-bottom: 20px;
  }
  
  .airport-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .feature {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .feature p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .cta-box {
    margin-top: 50px;
  }
  
  .cta-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .features {
      flex-direction: column;
      align-items: center;
    }
  
    .feature {
      width: 100%;
    }
  }
  /* SECTION STATION DE TAXI AROUND ME */
  .taxi-location-section {
    background-color: #f1faff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .taxi-wrapper {
    max-width: 1100px;
    margin: auto;
  }
  
  .taxi-location-section h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .advantages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .advantage-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-5px);
  }
  
  .advantage-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #007bff;
  }
  
  .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .advantage-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
  }
  
  .cta-callout {
    margin-top: 50px;
  }
  
  .cta-callout h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
  }
  
  .call-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .call-button:hover {
    background-color: #0056b3;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .advantages-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .advantage-card {
      width: 100%;
    }
  }
  /* SECTION TAXI AUTOUR DE MOI PAS CHER */
  .cheap-taxi-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .taxi-wrapper {
    max-width: 1100px;
    margin: auto;
  }
  
  .cheap-taxi-section h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .advantages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .advantage-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-5px);
  }
  
  .advantage-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #007bff;
  }
  
  .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .advantage-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
  }
  
  .cta-callout {
    margin-top: 50px;
  }
  
  .cta-callout h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
  }
  
  .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .advantages-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .advantage-card {
      width: 100%;
    }
  }
  /* SECTION TAXI AUTOUR DE MOI PRIX */
  .taxi-price-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .price-wrapper {
    max-width: 1100px;
    margin: auto;
  }
  
  .taxi-price-section h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .advantages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .advantage-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .advantage-card:hover {
    transform: translateY(-5px);
  }
  
  .advantage-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #007bff;
  }
  
  .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
  }
  
  .advantage-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
  }
  
  .cta-callout {
    margin-top: 50px;
  }
  
  .cta-callout h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
  }
  
  .cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .advantages-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .advantage-card {
      width: 100%;
    }
  }
  /* FOOTER */
  .site-footer {
    background-color: #111;
    color: #fff;
    padding: 60px 20px 20px;
    font-size: 14px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #007bff;
  }
  
  .footer-column p {
    line-height: 1.5;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column ul li a:hover {
    color: #fff;
  }
  
  .contact-info li {
    margin-bottom: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
  }
  
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 13px;
  }
  
  .footer-bottom .legal-links {
    margin-top: 10px;
  }
  
  .footer-bottom .legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer-bottom .legal-links a:hover {
    color: #fff;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  }
  /* === MENU DÉROULANT : Structure générale === */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    background: none;
    border: none;
    color: inherit; /* Hérite la couleur principale du texte */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: left;
    transition: color 0.3s ease;
  }
  
  .dropdown-toggle:focus {
    outline: none;
  }
  
  /* === CTA Buttons === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: flex-start;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease;
  min-width: 160px;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-secondary {
  background-color: #28a745;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

/* Responsive : Plein écran sur mobile */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
/* === Section "Sécurité pour les familles" === */
#safety-for-families {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.image-container {
  text-align: center;
  margin-bottom: 30px;
}

.image-container img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
  text-align: center;
}

.text-content h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  .image-container img {
    width: 80%;
  }

  .text-content h2 {
    font-size: 1.3rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }
}
/* === Section "Service personnalisé" === */
#personalized-service {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.image-container {
  text-align: center;
  margin-bottom: 30px;
}

.image-container img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
  text-align: center;
}

.text-content h2 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
  .image-container img {
    width: 80%;
  }

  .text-content h2 {
    font-size: 1.3rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }
}
/* === Zones desservies === */
#zones {
  background-color: #f4f8fb;
  padding: 60px 0;
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  margin: 20px 0;
  padding: 0;
  justify-content: center;
}

.zones-list li {
  background-color: #e6f0fa;
  color: #007bff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  border: 1px solid #d0e2f3;
}

#zones p {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

#zones .btn {
  display: block;
  text-align: center;
  margin: 30px auto 0;
}
/* === Témoignages clients === */
#testimonials {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

#testimonials h2 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 40px;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 20px auto;
  padding: 20px;
  border-left: 5px solid #007bff;
  background-color: #f9f9f9;
  border-radius: 4px;
  position: relative;
}

blockquote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #555;
  font-style: normal;
}

/* Responsive : Ajustement sur petits écrans */
@media (max-width: 768px) {
  #testimonials h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  blockquote {
    font-size: 1rem;
    padding: 15px;
  }
}
/* === Points de rendez-vous === */
#pickup-points {
  background :#2554ee;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 0;
  position: relative;
}

#pickup-points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

#pickup-points h2 {
  font-size: 2rem;
  color: #fff; 
  margin-bottom: 20px;
}

#pickup-points p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
  margin: auto;
}

.pickup-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pickup-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
}

.pickup-list li::before {
  content: "✔";
  color:  #fff; /* Rouge vif pour les coches */
  font-weight: bold;
  margin-right: 10px;
  position: absolute;
  left: -20px;
}




