.elementor-238 .elementor-element.elementor-element-69894807{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7a2bb92 */<style>
  /* CSS intégré pour ce bloc spécifique */
  .blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    padding: 20px;
  }
  /* Tag catégorie */
  .blog-tag {
    background-color: #e3f2fd;
    color: #0d47a1;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
  }
  /* Titre H1 */
  .blog-post-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
  }
  .blog-post-header h2 span {
    color: #0056b3; /* Couleur brand City-Drop */
  }
  /* Chapeau / Intro */
  .blog-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }
  /* Encart "En bref" pour le SEO et l'UX */
  .key-takeaways {
    background-color: #f8f9fa;
    border-left: 5px solid #0056b3;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
  }
  .key-takeaways h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #0056b3;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .key-takeaways ul {
    margin: 0;
    padding-left: 20px;
    color: #444;
  }
  .key-takeaways li {
    margin-bottom: 8px;
  }

  /* CSS pour le bloc "Infos Sixt" */
  .content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
  }

  .content-section h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
  }

  .content-section h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
  }

  /* Grille des véhicules */
  .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }

  .vehicle-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }

  .vehicle-item:hover {
    transform: translateY(-3px);
    border-color: #0056b3;
  }

  .vehicle-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
  }

  .vehicle-name {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: #222;
  }

  .vehicle-desc {
    font-size: 0.9rem;
    color: #666;
  }

  /* Liste conditions */
  .conditions-list {
    background-color: #f0f4f8;
    padding: 25px;
    border-radius: 8px;
  }

  .conditions-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .conditions-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }

  .conditions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }

  /* Note importante (Caution) */
  .alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.95rem;
  }

  /* CSS pour le bloc "Limites" */
  .limit-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #fff;
  }
  .limit-section h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
  }
  .limit-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
  }
  /* Cartes "Points de douleur" */
  .pain-points-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pain-point-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #dc3545; /* Rouge pour signaler une limite */
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  .pain-icon {
    font-size: 2rem;
    margin-right: 20px;
    min-width: 50px;
    text-align: center;
  }
  .pain-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #c53030;
  }
  .pain-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
  }
  /* Transition vers la solution */
  .transition-text {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
    color: #666;
    font-weight: 500;
  }

  /* CSS pour le bloc "Solution City-Drop" */
  .solution-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f9ff; /* Fond bleu très clair pour différencier */
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .solution-section h2 {
    font-size: 2rem;
    color: #0056b3; /* Bleu City-Drop */
    margin-bottom: 20px;
    text-align: center;
  }

  .solution-intro {
    font-size: 1.15rem;
    text-align: center;
    color: #444;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Liste des avantages */
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.08);
    transition: transform 0.3s ease;
  }

  .feature-item:hover {
    transform: translateY(-5px);
  }

  .feature-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #e6f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
  }

  .feature-icon {
    font-size: 1.8rem;
  }

  .feature-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #1a1a1a;
  }

  .feature-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }

  /* Highlight des mots clés */
  .highlight {
    color: #0056b3;
    font-weight: 700;
  }

  /* CSS pour le Tableau Comparatif */
  .comparison-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
  }
  .comparison-section h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
  }
  /* Container pour le scroll horizontal sur mobile */
  .table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 600px; /* Force la largeur sur mobile pour lisibilité */
  }
  .comparison-table th, 
  .comparison-table td {
    padding: 18px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
  }
  /* En-têtes */
  .comparison-table thead th {
    background-color: #f8f9fa;
    font-size: 1.1rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 4px solid transparent; /* Pour l'alignement */
  }
  /* Colonne Sixt (Neutre) */
  .comparison-table th:nth-child(2) {
    border-top-color: #ff6600; /* Orange Sixt */
    color: #ff6600;
  }
  /* Colonne City-Drop (Mise en avant) */
  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3) {
    background-color: #f0f7ff; /* Fond bleu très léger */
  }
  .comparison-table th:nth-child(3) {
    border-top-color: #0056b3;
    color: #0056b3;
    font-weight: 800;
  }
  /* Typographie cellules */
  .criteria-col {
    font-weight: 600;
    color: #555;
    width: 25%;
  }
  .cd-highlight {
    font-weight: 700;
    color: #0056b3;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sixt-neutral {
    color: #666;
  }
  /* Checkmark icon */
  .check-icon {
    color: #28a745;
    font-size: 1.2rem;
  }

  /* CSS Global pour le bloc final */
  .final-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
  }

  /* --- VERDICT STYLES --- */
  .verdict-container {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: 30px;
  }

  .verdict-card {
    flex: 1;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
  }

  .verdict-sixt {
    background-color: #fff5f0; /* Orange très clair */
    border-top: 4px solid #ff6600;
  }

  .verdict-citydrop {
    background-color: #f0f7ff; /* Bleu marque */
    border-top: 4px solid #0056b3;
  }

  .verdict-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
  }

  .verdict-list {
    margin: 0;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .verdict-list li {
    margin-bottom: 8px;
  }

  /* --- FAQ STYLES --- */
  .faq-container h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
  }

  details {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    color: #0056b3;
    list-style: none; /* Cache la flèche par défaut sur certains navigateurs */
    position: relative;
    padding-right: 20px;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    color: #333;
  }

  details[open] summary::after {
    content: '-';
  }

  details p {
    margin-top: 10px;
    line-height: 1.6;
    color: #555;
    font-size: 1rem;
  }

  /* --- CTA FINAL --- */
  .final-cta-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #009FE3;
    border-radius: 12px;
    color: white;
  }

  .final-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .btn-primary {
    display: inline-block;
    background-color: #F95B33; /* Orange pour contraste fort sur bleu */
    color: #ffffff!important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .blog-post-header h2 {
      font-size: 1.8rem;
    }
    .blog-lead {
      font-size: 1.1rem;
    }
    .verdict-container {
      flex-direction: column;
    }
  }

  @media (max-width: 600px) {
    .pain-point-card {
      flex-direction: column;
    }
    .pain-icon {
      margin-bottom: 10px;
    }
    .feature-item {
      flex-direction: column;
      text-align: center;
    }
    .feature-icon-wrapper {
      margin: 0 auto 15px auto;
    }
  }
</style>/* End custom CSS */