/* ===== ABOUT PAGE — styles spécifiques ===== */

/* Hero */
.top-banner {
    background: linear-gradient(135deg, #034ca7, #2563eb);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
  }
  .top-banner h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
  }
  
  /* Section "Welcome France" */
  .about-section {
    padding: 60px 20px;
  }
  .about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  .about-image { flex: 1 1 350px; }
  .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  .about-text { flex: 1 1 350px; }
  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #034ca7; /* même bleu que l’index */
  }
  .about-text p {
    margin-bottom: 12px;
    line-height: 1.65;
    color: #333;
  }
  
  /* Section "Our Vision" */
  .vision-section {
    background: #f4f7fb;
    padding: 60px 20px;
    text-align: center;
  }
  .vision-section h2 {
    font-size: 1.8rem;
    color: #034ca7; /* même bleu */
    margin-bottom: 16px;
  }
  .vision-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
  }
  
  /* Section "Book Your Paris Transfer Today" (CTA) */
  .cta-section {
    background: linear-gradient(135deg, #034ca7, #2563eb);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
  }
  .cta-section h2 {
    font-size: 1.9rem;
    margin-bottom: 18px;
  }
  .cta-section p {
    max-width: 850px;
    margin: 0 auto 16px;
    line-height: 1.6;
  }
  .cta-section .btn-group {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  
  /* Boutons (même design que index) */
  .btn-primary {
    background: #ff6a00; /* orange */
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: background .3s;
  }
  .btn-primary:hover { background: #e65c00; }
  
  .btn-outline {
    border: 2px solid #ff6a00;
    color: #ff6a00;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s;
  }
  .btn-outline:hover {
    background: #ff6a00;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-flex { flex-direction: column; text-align: center; }
    .about-text { text-align: center; }
    .top-banner { padding: 60px 18px; }
    .top-banner h1 { font-size: 2rem; }
  }
/* Supprime le bandeau bleu et garde seulement le titre centré */
.top-banner{
    background: transparent !important;
    padding: 0 !important;
    color: inherit;
    box-shadow: none;
  }
  .top-banner h1{
    margin: 28px auto 12px;
    font-size: 2rem;        /* même échelle que le site */
    font-weight: 700;
    color: #0b1e3a;         /* titre foncé lisible */
    text-align: center;
  }
    