.hero-section {
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    padding: 100px 0;

    /* Image de fond */
    /* background: url("../img/about.jpg") center center / cover no-repeat; */
}

/* Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(160, 8, 1, 0.85); /* Rouge avec 75% d'opacité */
    z-index: 1;
}

/* Le contenu passe au-dessus de l'overlay */
.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Effet de séparation en bas */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #F9F9F9;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 3;
} 
 
 /* --- Section 1: Hero Banner (Rouge exposé) --- */
        /* .hero-section {
            background: linear-gradient(135deg, var(--bs-tertiary) 0%, #A00801 100%);
            color: #FFFFFF;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: #F9F9F9;
            clip-path: polygon(0 100%, 100% 100%, 100% 0);
        } */

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        .btn-give {
            background-color: #FFFFFF;
            color: var(--bs-tertiary);
            font-weight: 700;
            font-size: 1.25rem;
            padding: 15px 40px;
            border-radius: 50px;
            border: 2px solid #FFFFFF;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .btn-give:hover {
            background-color: transparent;
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        /* --- Section 2: Text Impact --- */
        .impact-section {
            padding: 50px 0;
            background-color: #F9F9F9;
        }

        .impact-text {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--font-dark);
            line-height: 1.4;
        }

        .impact-highlight {
            color: var(--bs-tertiary);
        }

        /* --- Section 3: Matching Gift (Recherche API de l'entreprise) --- */
        .search-section {
            padding: 80px 0;
            background-color: var(--bs-secondary);
            border-radius: 24px;
            margin: 0 20px;
        }

        .search-card {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .search-input-group {
            position: relative;
        }

        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #FFFFFF;
            border: 1px solid #DDD;
            border-radius: 0 0 8px 8px;
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }

        .search-results div {
            padding: 12px 20px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .search-results div:hover {
            background-color: var(--bs-secondary);
        }

       
        /* --- Section 5: Témoignages --- */
        .testimonials-section {
            padding: 80px 0;
            background-color: #F9F9F9;
        }

        .testimonial-card {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 16px;
            border-left: 5px solid var(--bs-tertiary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .partner-logo {
    max-height: 70px;
    max-width: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}
/* ==========================================
   STYLE DE LA STRUCTURE GLOBALE d-page
   ========================================== */
.custom-d-page-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    background-color: #f8f9fa;
    border: none !important;
}

/* ==========================================
   STYLE DU CÔTÉ GAUCHE (d-page-side)
   ========================================== */
.d-page-side {
    position: relative;
    background-image: none !important;
}

/* Suppression des angles pointus */
.d-page-side::before, 
.d-page-side::after {
    display: none !important;
}

/* Titre Principal */
.d-page-side .custom-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 2.3rem;
    line-height: 1.25;
}

/* Paragraphe d'accroche principal */
.d-page-side .custom-lead {
    font-size: 1.2rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 500;
}

/* Blocs de texte secondaires */
.d-page-side .donation-options p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
}

/* Style des liens d'action */
.d-page-side .custom-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.d-page-side .custom-link:hover {
    color: #cc0000;
    border-bottom-color: #cc0000;
}

/* ==========================================
   CONTENEUR DU WIDGET (DROITE)
   ========================================== */
.spec-widget-container {
    max-width: 420px;
    margin: 0 auto;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE & TABLETTE)
   ========================================== */
@media (max-width: 991.98px) {
    .d-page-side .custom-title {
        font-size: 1.85rem;
    }
    
    .d-page-side .custom-lead {
        font-size: 1.1rem;
    }

    .custom-d-page-card {
        border-radius: 8px;
    }
}