        /*
    * =====================================================
    * STYLE MODERNE POUR SOS DÉBOUCHEUR PARIS
    * =====================================================
    * Ce fichier CSS améliore uniquement la partie visuelle
    * SANS MODIFIER LE HTML EXISTANT
    * Compatible avec la structure HTML actuelle
    * Préserve 100% du SEO
    * =====================================================
    */

        /* ===== VARIABLES CSS POUR COHÉRENCE ===== */
        :root {
            --primary-color: #001a70;
            --secondary-color: #0066cc;
            --accent-color: #ff6b00;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-radius: 12px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        /* ===== RESET ET BASE ===== */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body.home {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ===== TYPOGRAPHIE AMÉLIORÉE ===== */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-dark);
        }

        h1 {
            font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
        }

        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
            margin-top: 2rem;
            margin-bottom: 1.5rem;
        }

        h2.thin {
            font-weight: 500 !important;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 2rem) !important;
            color: var(--primary-color);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.25rem;
            color: var(--text-light);
            font-size: 1.4rem;
            line-height: 1.8;
        }

        /* ===== NAVIGATION MODERNISÉE ===== */
        .navbar-inverse {
            background: linear-gradient(135deg, var(--primary-color) 0%, #002994 100%) !important;
            border: none !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            padding-top: 15px !important;
            padding-bottom: 15px !important;
        }

        .navbar-brand img {
            max-height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-nav>li>a {
            color: #ffffff !important;
            font-weight: 600 !important;
            padding: 15px 20px !important;
            transition: var(--transition);
            position: relative;
            margin: 0px 5px;
        }

        /* Hover effect - light background pour les liens normaux */
        .navbar-nav>li>a:hover {
            background-color: rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px;
        }

        /* Active state - enlever le carré, utiliser un soulignement orange */
        .navbar-nav>li.active>a {
            background-color: transparent !important;
        }

        /* Soulignement au hover UNIQUEMENT pour les liens normaux (pas le bouton) */
        .navbar-nav>li>a::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 2px;
            background: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .navbar-nav>li>a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* BOUTON TÉLÉPHONE - Retirer le soulignement */
        .navbar-nav>li>a.btn {
            background: var(--accent-color) !important;
            border-radius: 25px;
            padding: 12px 28px !important;
            margin-left: 10px;
            font-weight: 700 !important;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
            border: none !important;
        }

        /* Pas de soulignement pour le bouton */
        .navbar-nav>li>a.btn::after {
            display: none !important;
        }

        .navbar-nav>li>a.btn:hover {
            background: #ff8533 !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 107, 0, 0.4);
        }

        /* ===== HEADER HERO ===== */
        #head {
            background: url('../assets/images/debouchagebaniere2025.jpeg') bottom center / cover no-repeat !important;
            min-height: 95vh;
            object-fit: cover;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        #head h1 {
            color: #ffffff !important;
            font-size: clamp(1.75rem, 4.5vw, 5rem) !important;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            margin-top: 0px !important;
            animation: fadeInUp 1s ease-in !important;
            position: relative;
            z-index: 1;
            max-width: 50vw;
            display: inline-block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #head .lead {
            font-weight: 700 !important;
            color: #ffffff !important;
        }

        /* ===== BOUTONS MODERNISÉS ===== */
        .btn-action,
        .btn-primary,
        .btn-large,
        .btn-lg {
            background: var(--accent-color) !important;
            border: none !important;
            border-radius: 30px !important;
            padding: 16px 40px !important;
            font-size: 1.25rem !important;
            font-weight: 700 !important;
            color: #ffffff !important;
            text-decoration: none !important;
            display: inline-block;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-action::before,
        .btn-primary::before,
        .btn-large::before,
        .btn-lg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: 0;
        }

        .btn-action:hover::before,
        .btn-primary:hover::before,
        .btn-large:hover::before,
        .btn-lg:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-action:hover,
        .btn-primary:hover,
        .btn-large:hover,
        .btn-lg:hover {
            background: #ff8533 !important;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
            color: #ffffff !important;
            text-decoration: none !important;
        }

        /* ===== IMAGE PRINCIPALE ===== */
        .container.text-center .thin {
            font-size: clamp(1.75rem, 4.5vw, 2.5rem) !important;
        }

        .container.text-center>center>img,
        .container.text-center img {
            max-width: 35% !important;
            animation: fadeInUp 0.8s ease !important;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .container.text-center>center>img:hover,
        .container.text-center img:hover {
            transform: scale(1.04);
            box-shadow: var(--box-shadow-hover);
        }

        /* ===== JUMBOTRON MODERNISÉ ===== */
        .jumbotron {
            width: 55%;
            background: radial-gradient(#f3f3f3 0%, var(--bg-light) 100%) !important;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius) !important;
            padding: 50px 40px 20px 40px !important;
            margin: 50px auto !important;
            box-shadow: var(--box-shadow);
            border-top: 5px solid var(--primary-color) !important;
            border: none;
        }

        .jumbotron p {
            font-size: 1.6rem !important;
            line-height: 1.8 !important;
            color: var(--text-dark) !important;
            text-align: center !important;
            margin-bottom: 30px;
        }

        /* ===== CARTES D'AVANTAGES (col-sm-4 avec border) ===== */
        .row {
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin: 0px !important;
            padding: 0px !important;
        }

        .row>.col-sm-4[style*="border-radius"],
        .row>.col-sm-4[style*="border: outset"] {
            background: var(--bg-white) !important;
            border-radius: var(--border-radius) !important;
            padding: 15px 20px !important;
            box-shadow: var(--box-shadow) !important;
            transition: var(--transition) !important;
            border: none !important;
            border-top: 4px solid var(--primary-color) !important;
            margin-bottom: 30px;
        }

        .row>.col-sm-4[style*="border-radius"]:hover,
        .row>.col-sm-4[style*="border: outset"]:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover) !important;
            border-top-color: var(--accent-color) !important;
        }

        .row>.col-sm-4[style*="border-radius"] h3,
        .row>.col-sm-4[style*="border: outset"] h3 {
            color: var(--primary-color) !important;
            font-size: 1.7rem !important;
            margin-bottom: 15px;
        }

        .row>.col-sm-4[style*="border-radius"] p,
        .row>.col-sm-4[style*="border: outset"] p {
            text-align: center !important;
            font-size: 1.2rem !important;
            line-height: 1.7;
            margin: 0px !important;
            padding: 0px !important;
        }

        /* ===== ARTICLE PRINCIPAL ===== */
        .maincontent {
            background: var(--bg-white);
            padding: 10px 40px !important;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 40px;
        }

        .page-header {
            border-bottom: 3px solid var(--primary-color) !important;
            padding-bottom: 20px;
            margin-bottom: 35px;
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .page-header h2,
        .page-header .page-title {
            color: var(--primary-color) !important;
            margin: 0 !important;
            padding: 0 !important;
            font-size: 2rem !important;
            font-weight: 500;
        }

        .maincontent ul {
            margin-left: 20px;
            margin-bottom: 1.5rem;
        }

        .maincontent ul li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        /* ===================================================
   STYLE DES LIENS DE DÉBOUCHAGE - BOUTONS MODERNES
   ================================================== */

        .linkcontent p a {
            display: inline-block;
            background: #ffffff;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            padding: 3px 10px;
            margin: 3px 4px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        /* Hover effect */
        .linkcontent p a:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 26, 112, 0.2);
            text-decoration: none;
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {

            .linkcontent p a {
                padding: 2px 10px;
                font-size: 0.9rem;
                margin: 3px;
            }
        }

        .services-card {
            display: flex;
            flex-direction: row;
            justify-content: stretch;
            align-items: stretch;
            padding: 0px !important;
            margin: 0px !important;
        }

        .col-md-12 {
            margin-bottom: 50px;
        }

        .col-md-4 img {
            max-width: 20vw;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .col-md-8 {
            padding: 0px !important;
            margin: 0px !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
        }


        .col-md-8 p {
            font-size: 1.4rem;
        }


        /* ===== TABLEAU DE TARIFS ===== */
        #example {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--bg-white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            margin-bottom: 0px;
        }

        #example thead tr {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
        }

        #example thead th {
            color: #ffffff !important;
            padding: 20px 15px !important;
            font-weight: 700 !important;
            text-align: left !important;
            font-size: 1.3rem !important;
            border: none !important;
            background: transparent !important;
            display: table-cell !important;
        }

        #example tbody tr {
            transition: var(--transition);
            border-bottom: 1px solid #e0e0e0;
        }

        #example tbody tr:hover {
            background-color: #f0f7ff !important;
            transform: scale(1.005);
        }

        #example tbody tr:last-child {
            border-bottom: none;
        }

        #example tbody td {
            padding: 20px 15px !important;
            background: var(--bg-white) !important;
            color: var(--text-dark) !important;
            font-size: 1rem !important;
            border: none !important;
            display: table-cell !important;
        }

        #example tbody tr:nth-child(even) td {
            background-color: #f8f9fa !important;
        }

        #example tbody tr:hover td {
            background-color: #f0f7ff !important;
        }

        #example strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        /* ===== FOOTER MODERNISÉ ===== */
        #footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
            color: #ffffff;
            padding-top: 60px;
            margin-top: 80px;
        }

        .footer1 {
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .widget {
            margin-bottom: 30px;
        }

        .widget-title {
            color: #ffffff !important;
            font-size: 1.3rem !important;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }

        .widget-body p,
        .widget-body h5 {
            color: rgba(255, 255, 255, 0.8) !important;
            line-height: 1.8;
        }

        .widget-body a {
            color: rgba(255, 255, 255, 0.8) !important;
            text-decoration: none;
            transition: var(--transition);
        }

        .widget-body a:hover {
            color: var(--accent-color) !important;
        }

        .footer2 {
            background: #1a1a1a;
            padding: 25px 0px 0px 0px;
        }

        .footer2 .simplenav a {
            color: rgba(255, 255, 255, 0.8) !important;
            margin: 0 2px;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer2 .simplenav a:hover {
            color: var(--accent-color) !important;
        }

        .follow-me-icons a {
            display: inline-block;
            margin-right: 15px;
            color: #ffffff !important;
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .follow-me-icons a:hover {
            color: var(--accent-color) !important;
            transform: translateY(-3px);
        }

        .follow-me-icons a i {
            color: inherit;
        }

        /* ===== COOKIE ALERT ===== */
        .cookiealert {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            background: rgba(0, 26, 112, 0.95) !important;
            backdrop-filter: blur(10px);
            color: #ffffff !important;
            padding: 20px !important;
            margin: 0 !important;
            z-index: 9999 !important;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2) !important;
            animation: slideUp 0.5s ease;
            border: none !important;
            border-radius: 0 !important;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Classe pour cacher la barre de cookies après acceptation */
        .cookiealert.hide {
            display: none !important;
        }

        .acceptcookies {
            background: var(--accent-color) !important;
            border: none !important;
            border-radius: 25px !important;
            padding: 10px 25px !important;
            font-weight: 700 !important;
            transition: var(--transition);
            color: #ffffff !important;
            cursor: pointer !important;
        }

        .acceptcookies:hover {
            background: #ff8533 !important;
            transform: scale(1.05);
            cursor: pointer !important;
        }

        /* ===== ESPACEMENT ET STRUCTURE ===== */
        .top-space {
            margin-top: 10px;
        }

        .container {
            max-width: 1200px;
        }

        .centerrr {
            display: block;
            text-align: center;
            width: 100vw;
        }


        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            .navbar-nav {
                background: rgba(0, 26, 112, 0.98);
                border-radius: 8px;
                margin-top: 10px;
            }

            .navbar-nav>li>a {
                padding: 12px 20px !important;
            }

            #head {
                background: url('../assets/images/debouchagebaniere2025mobile.jpeg.jpeg') center center / cover no-repeat !important;
                min-height: 65vh;
                padding: 100px 0 60px;
                justify-content: center;
            }

            #head h1 {
                max-width: 80%;
                font-size: 3rem !important;
            }

            .container.text-center>center>img,
            .container.text-center img {
                max-width: 85% !important;
            }

            .jumbotron {
                padding: 30px 20px 0px 20px !important;
                margin: 10px;
                width: 90%;
            }

            .jumbotron p {
                font-size: 1.7rem !important;
                font-weight: 500;
            }

            .jumbotron h4 {
                font-size: 2rem !important;
                font-weight: 700 !important;
                text-align: center;
                line-height: 1.5;
            }

            .maincontent {
                padding: 30px 20px !important;
            }

            .row {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
                margin: 0px !important;
                padding: 0px !important;
            }

            .row>.col-sm-4[style*="border-radius"],
            .row>.col-sm-4[style*="border: outset"] {
                padding: 15px 3px !important;
                margin: 10px;
            }

            .col-md-12 {
                padding: 0px;
            }

            .col-md-4 img {
                padding: 0px;
                margin: 0px 0px 15px 0px;
                max-width: 100%;
                height: auto;
                border-radius: var(--border-radius);
                box-shadow: var(--box-shadow);
            }

            .col-md-4 {
                width: 100%;
                padding: 0;
            }

            #example thead th,
            #example tbody td {
                padding: 12px 10px !important;
                font-size: 1.3rem !important;
            }

            .btn-action,
            .btn-primary,
            .btn-large,
            .btn-lg {
                margin: 5px;
                padding: 14px 30px !important;
                font-size: 1.5rem !important;
            }
        }

        @media (max-width: 480px) {
            body.home {
                font-size: 17px;
            }

            h2 {
                font-size: 1.5rem !important;
            }

            h3 {
                font-size: 2.5rem !important;
            }

            .btn-action,
            .btn-primary,
            .btn-large,
            .btn-lg {
                margin: 5px;
                padding: 12px 25px !important;
                font-size: 1.5rem !important;
            }

            #example {
                font-size: 1.1rem;
            }

            .widget-title {
                font-size: 1.4rem !important;
            }
        }

        /* ===== ACCESSIBILITÉ ===== */
        a:focus,
        button:focus {
            outline: 3px solid var(--accent-color);
            border-radius: var(--border-radius);
            outline-offset: 2px;
        }

        .question-click {
            outline: 3px solid var(--primary-color);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            outline-offset: 2px;
        }

        /* ===== PERFORMANCES - LAZY LOADING ===== */
        img {
            max-width: 100%;
            height: auto;
        }

        .navbar-brand img {
            width: auto;
            height: 50px;
        }

        /* ===== ANIMATIONS POUR UTILISATEURS AVEC PRÉFÉRENCE ===== */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* ===== AMÉLIORATION DE LA LISIBILITÉ ===== */
        strong,
        b {
            font-weight: 700;
            color: var(--text-dark);
        }

        em,
        i {
            font-style: italic;
        }

        /* ===== ESPACEMENT DES SECTIONS ===== */
        .maincontent>h2 {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e0e0e0;
        }

        .maincontent>h2:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        /* ===== AMÉLIORATION DES MARGES ===== */
        .text-center {
            text-align: center;
        }

        br {
            line-height: 1.5;
        }



        img {
            border: none !important;
            outline: none !important;
        }

        /* L'élément center */
        center {
            border: none !important;
            outline: none !important;
        }

        /* Images dans le container */
        .container.text-center img {
            border: none !important;
            outline: none !important;
        }

        /* ===== FIN DU FICHIER CSS ===== */