.elementor-2729 .elementor-element.elementor-element-42895d2{--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-a1852ea *//* HERO */
.hero {
    background: linear-gradient(135deg, #e10600, #b80000);
    color: white;
    padding: 50px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero h1 {
    color: white;
    margin: 0;
}

.hero h1::after {
    display: none;
}

.hero-sub {
    opacity: 0.9;
    margin-top: 10px;
}

/* INTRO */
.intro-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* TABLE MODERNE */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.modern-table thead {
    background: #e10600;
    color: white;
}

.modern-table th, 
.modern-table td {
    padding: 14px;
    text-align: left;
}

.modern-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.modern-table tbody tr:hover {
    background: #f9f9f9;
}

/* MOBILE TRANSFORMATION */
@media (max-width: 768px) {

    .modern-table thead {
        display: none;
    }

    .modern-table, 
    .modern-table tbody, 
    .modern-table tr, 
    .modern-table td {
        display: block;
        width: 100%;
    }

    .modern-table tr {
        background: white;
        margin-bottom: 15px;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .modern-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .modern-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
        font-weight: bold;
        text-align: left;
    }
}/* End custom CSS */