.elementor-30616 .elementor-element.elementor-element-69e8d04{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-30616 .elementor-element.elementor-element-8dbe946{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-71ac104 */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #2b2e71;
            --green-dark: #266534;
            --green-lime: #b5ce51;
            --orange: #ea5e3a;
            --beige: #efe6d4;
            --white: #ffffff;
            --gray: #666666;
            --light-gray: #f8f9fa;
            --shadow: rgba(43, 46, 113, 0.1);
            --shadow-hover: rgba(43, 46, 113, 0.15);
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--navy);
            background-color: var(--white);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .main-section .container,
        .advantages-section .container {
            padding: 0;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
            color: var(--white);
            padding: 120px 40px 80px;
            text-align: center;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
        }

        .header p {
            font-size: 1.2rem;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Section principale */
        .main-section {
            padding: 80px 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 60px;
            color: var(--navy);
        }

        /* Grille de couverture */
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
            gap: 30px;
            margin-bottom: 80px;
            justify-content: center;
            padding: 0 40px;
        }

        .coverage-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            border-left: 4px solid var(--orange);
        }

        .coverage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px var(--shadow-hover);
        }

        .coverage-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--navy);
        }

        .coverage-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .coverage-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--orange);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }

        /* Section avantages */
        .advantages-section {
            background: var(--light-gray);
            padding: 80px 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 40px;
        }

        .advantage-item {
            text-align: center;
            padding: 30px 20px;
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange) 0%, #ff7659 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .advantage-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--navy);
        }

        .advantage-item p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Section CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-primary {
            background: var(--orange);
            color: var(--white);
            border: 2px solid var(--orange);
        }

        .cta-primary:hover {
            background: #d94d28;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(234, 94, 58, 0.3);
        }

        .cta-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--green-lime);
        }

        .cta-secondary:hover {
            background: var(--green-lime);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(181, 206, 81, 0.3);
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 40px 0;
            text-align: center;
        }

        .footer p {
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .coverage-grid {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
    </style>/* End custom CSS */