/* Start custom CSS for text-editor, class: .elementor-element-8973601 *//* CONFIGURATION CSS FINALE : OPTIMISÉ SEO / SGE / RESPONSIVE
   Thème : Bleu Marine & Noir (Expertise Juridique)
*/

:root {
    --primary-blue: #003366;    /* Bleu Marine (Autorité) */
    --soft-blue: #f0f7ff;       /* Bleu très pâle (Fond SGE) */
    --header-blue: #e6eff7;     /* Bleu clair (Haut de tableau) */
    --black: #1a1a1a;           /* Noir (Lecture confortable) */
    --accent-blue: #0056b3;     /* Bleu vif (Liens/Accents) */
    --border-light: #d1d5db;
}

/* --- STRUCTURE DE L'ARTICLE --- */
.article-content {
    max-width: 850px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--black);
    font-size: 15px;
    padding: 20px;
    background-color: #ffffff;
}

.article-content p {
    text-align: justify;
}

/* --- HIÉRARCHIE DES TITRES (Sémantique SEO) --- */
.article-content h1 {
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--primary-blue);
    padding-bottom: 15px;
}

.article-content h2 {
    color: var(--primary-blue);
    font-size: 1.9rem;
    margin-top: 3.5rem;
    border-left: 6px solid var(--black);
    padding-left: 20px;
}

.article-content h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
}

/* --- BLOC RÉPONSE IA / POSITION 0 (SGE) --- */
.article-content blockquote {
    background-color: var(--soft-blue);
    border: 2px solid var(--primary-blue);
    border-left: 10px solid var(--primary-blue);
    margin: 2.5rem 0;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 4px 4px 15px rgba(0, 51, 102, 0.08);
}

.article-content blockquote p {
    margin: 0;
    font-style: normal;
        text-align: initial;
}

.article-content blockquote strong {
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TABLEAU RESPONSIVE (CRUCIAL) --- */
/* Pour que cela fonctionne, entourez votre <table> par <div class="table-container"> */
.table-container {
    width: 100%;
    overflow-x: auto; /* Active le défilement horizontal sur mobile */
    -webkit-overflow-scrolling: touch; /* Scroll fluide iOS */
    margin: 3rem 0;
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.article-content table {
    width: 100%;
    min-width: 700px; /* Force une largeur minimale pour éviter l'écrasement du texte */
    border-collapse: collapse;
    background: #ffffff;
}

/* Haut du tableau : Visibilité optimisée */
.article-content thead tr {
    background-color: var(--header-blue); 
    border-bottom: 3px solid var(--primary-blue);
}

.article-content th {
    padding: 20px;
    color: var(--primary-blue); /* Texte marine sur fond clair */
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.article-content td {
    padding: 18px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 17px;
    vertical-align: top;
    color: var(--black);
}

.article-content tr:nth-child(even) {
    background-color: #fcfcfc;
}

.article-content tr:hover {
    background-color: #f5f9ff;
}

/* --- LISTES ET ÉLÉMENTS DE TEXTE --- */
.article-content ul {
    list-style: none;
    padding-left: 5px;
    margin-top: 1.5rem;
}

.article-content li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.article-content li::before {
    content: "■";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 4px;
}

.article-content hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    opacity: 0.2;
    margin: 4rem 0;
}
/* --- SECTION TÉMOIGNAGES --- */
.testimonials-section {
    margin: 4rem 0;
    padding: 20px 0;
}

.testimonial-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem !important;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.quote-icon {
    font-size: 50px;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-info strong {
    display: block;
    color: var(--primary-blue);
    font-size: 16px;
}

.client-info span {
    font-size: 14px;
    color: #666;
}

/* --- MOBILE --- */
@media (max-width: 600px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    .article-content {
        padding: 15px;
        font-size: 17px;
    }
    .article-content h1 { font-size: 1.9rem; }
    .article-content h2 { font-size: 1.6rem; }
    .article-content blockquote { padding: 20px; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-53200039 *//* --- ENCART DEVIS FOND BLEU (CONTRASTE OPTIMISÉ) --- */
.cta-box {
    background: #003366 !important; /* Bleu Marine Uni pour la stabilité */
    border-radius: 12px;
    padding: 50px 40px;
    margin: 4rem 0;
    text-align: center;
    border: 2px solid #004a99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-box h3 {
    color: #ffffff !important; /* BLANC PUR OBLIGATOIRE */
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    text-transform: none;
}

.cta-box p {
    color: #ffffff !important; /* BLANC PUR OBLIGATOIRE */
    font-size: 19px !important;
    max-width: 650px;
    margin: 0 auto 35px !important;
    opacity: 0.9; /* Légère transparence pour hiérarchiser mais reste lisible */
}

/* LE BOUTON : BLANC AVEC TEXTE MARINE */
.cta-button {
    display: inline-block !important;
    background-color: #ffffff !important; /* Fond Blanc */
    color: #003366 !important;           /* Texte Bleu Marine pour le contraste interne */
    text-decoration: none !important;
    padding: 18px 40px !important;
    font-size: 19px !important;
    font-weight: 900 !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid #ffffff !important;
}

/* AU SURVOL : Inversion chromatique propre */
.cta-button:hover {
    background-color: transparent !important;
    color: #ffffff !important; /* Devient blanc sur fond bleu */
    transform: scale(1.05);
}

/* RÉASSURANCE EN BLANC */
.reassurance {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    color: #ffffff !important; /* BLANC PUR */
    font-size: 14px;
    font-weight: 600;
}/* End custom CSS */