.elementor-28249 .elementor-element.elementor-element-c5d022a{--display:flex;}.elementor-28249 .elementor-element.elementor-element-1c2149f{--display:flex;}.elementor-28249 .elementor-element.elementor-element-086ef4d{--display:flex;}.elementor-28249 .elementor-element.elementor-element-130c9e1{--display:flex;}/* Start custom CSS */.centred {
    text-align: center;
    display: none;
}
.intro-card {
    background: #f8f9fa !important;
    
}
/* Override pour les boutons CTA dans le header - doit être après le style global .cta-button */
.df-header .cta-button,
.df-header-cta .cta-button {
    width: auto !important;
    min-width: fit-content !important;
    margin-top: 0 !important;
    font-size: clamp(0.875rem, 1.2vw, 0.9375rem) !important;
    padding: 0.75rem 1.5rem !important;
    display: inline-flex !important;
}
.hero-content h1{
    color: white !important;
}
 /* Hero Section */
    .hero-section {
        background-color: #1a3a5c;
        background-image: url('https://demarches-en-france.fr/wp-content/uploads/2025/12/premiere-demande-sejour.jpg.jpg');
        background-size: cover;
        background-position: center;
        padding: 5rem 2rem 4rem;
        min-height: 350px;
        text-align: center;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 58, 92, 0.85), rgba(44, 95, 141, 0.8));
        backdrop-filter: blur(1px);
    }

    .hero-breadcrumb {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto 1.5rem;
        padding: 0 2rem;
        text-align: center;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }

    .breadcrumb-nav a {
        color: #ffffff;
        text-decoration: none;
        opacity: 0.9;
        transition: opacity 0.3s;
    }

    .breadcrumb-nav a:hover {
        opacity: 1;
    }

    .breadcrumb-nav .separator {
        color: #e74c3c;
        font-weight: bold;
        margin: 0 0.25rem;
    }

    .breadcrumb-nav .current {
        color: #e74c3c;
        font-weight: 600;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.75rem;
        margin-bottom: 1rem;
        font-weight: 700;
        animation: fadeInUp 0.8s ease;
    }

    .hero-content p {
        font-size: 1.2rem;
        opacity: 0.95;
        animation: fadeInUp 1s ease;
        line-height: 1.6;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }
        .hero-content p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            padding: 4rem 1rem 3rem;
            min-height: 300px;
        }
        .hero-breadcrumb {
            padding: 0 1rem;
        }
        .hero-content h1 {
            font-size: 1.75rem;
        }
    }/* End custom CSS */