.elementor-903 .elementor-element.elementor-element-a835638{--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-b044527 */:root {
    --epm-yellow: #F4D03F;
    --epm-dark: #111111;
    --epm-grey: #1C1C1C;
    --epm-text-white: #FFFFFF;
    --epm-text-light: #EAEAEA; /* Un gris très clair, très lisible sur fond noir */
}

.about-page-epm {
    background-color: var(--epm-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* --- FORÇAGE DES COULEURS DE TEXTE (Anti-conflit Elementor) --- */
.about-page-epm h1, 
.about-page-epm h2, 
.about-page-epm h3, 
.about-page-epm h4 {
    color: var(--epm-text-white) !important;
}

.about-page-epm p,
.about-page-epm summary,
.about-page-epm details {
    color: var(--epm-text-light) !important;
}

.container-epm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.about-hero-epm {
    height: 80vh;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    filter: grayscale(100%);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-overlay-epm {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--epm-dark) 0%, transparent 100%);
}

.hero-text-epm {
    position: relative;
    padding: 60px;
    z-index: 2;
}

.hero-text-epm h1 {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 0.8;
}

.badge-epm {
    background: var(--epm-yellow);
    color: #111 !important; /* Texte sombre sur fond jaune pour le badge */
    padding: 5px 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Intro */
.about-intro-epm {
    padding: 100px 0;
}

.intro-grid-epm {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.lead-text {
    font-size: 1.4rem;
    color: var(--epm-text-white) !important;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
}

.highlight-text {
    color: var(--epm-yellow) !important;
    font-weight: 700;
}

.location-card {
    background: var(--epm-grey);
    padding: 40px;
    border-left: 5px solid var(--epm-yellow);
    border-radius: 4px;
}

/* Prestations (Details) */
.about-details-epm {
    padding-bottom: 100px;
}

.details-grid-epm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.detail-item-epm {
    background: var(--epm-grey);
    padding: 40px;
    border-radius: 4px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.detail-item-epm:hover {
    background: #252525;
    transform: translateY(-5px);
}

.detail-icon {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1) !important; /* Reste en filigrane */
    margin-bottom: -15px;
}

.detail-item-epm h4 {
    color: var(--epm-yellow) !important;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Closing */
.about-closing-epm {
    padding: 100px 0;
    background: #0A0A0A; /* Noir encore plus profond pour trancher */
}

.closing-box-epm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.signature-epm {
    display: block;
    font-family: 'Georgia', serif; /* Typo serif pour la signature */
    font-style: italic;
    font-size: 1.5rem;
    color: var(--epm-text-white) !important;
    margin: 30px 0;
}

.btn-epm {
    display: inline-block;
    padding: 16px 40px;
    background: var(--epm-yellow);
    color: #111 !important;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--epm-yellow);
}

.btn-epm:hover {
    background: transparent;
    color: var(--epm-yellow) !important;
}

/* FAQ */
.faq-section-epm {
    padding: 100px 0;
    background: var(--epm-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.faq-accordion-epm details {
    background: var(--epm-grey);
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-accordion-epm summary {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    outline: none;
    position: relative;
}

/* Icône '+' pour l'accordéon */
.faq-accordion-epm summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--epm-yellow);
    font-size: 1.5rem;
    line-height: 1;
}

.faq-accordion-epm details[open] summary::after {
    content: '-';
}

.faq-accordion-epm details p {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid-epm, .details-grid-epm, .closing-box-epm {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text-epm h1 { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    .hero-text-epm { padding: 30px; }
    .hero-text-epm h1 { font-size: 3rem; }
    .about-hero-epm { height: 60vh; }
}/* End custom CSS */