/* Style homogène avec le site pour la page recrutement */
.recrutement-table-container {
    overflow-x: auto;
    margin: 32px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #005baa11;
    padding: 16px;
}
.recrutement-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    background: #fff;
}
.recrutement-table th, .recrutement-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    font-size: 1rem;
    vertical-align: middle;
}
.recrutement-table th {
    background: #005baa;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.recrutement-table tr:last-child td {
    border-bottom: none;
}
.recrutement-table a {
    color: #005baa;
    text-decoration: underline;
    font-weight: 500;
}
.header-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.header-img-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-img-recrutement {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 8px #005baa22;
    object-fit: contain;
}
.header-img-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 18px 0 0 0;
}
.header-img-banner-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 8px #005baa22;
}
.page-header-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 260px;
    padding: 0;
}
.header-overlay {
    width: 100%;
    min-height: 260px;
    background: rgba(20, 20, 20, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 60px 0 40px 0;
}
.page-header-section .container {
    position: static;
    z-index: 3;
}
.page-title {
    color: #fff;
    font-size: 3rem;
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 0.5em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.page-subtitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
@media (max-width: 700px) {
    .recrutement-table th, .recrutement-table td {
        font-size: 0.92rem;
        padding: 8px 4px;
    }
    .header-flex-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .header-img-recrutement {
        width: 60px;
        height: 60px;
    }
    .header-img-banner-img {
        width: 70px;
        height: 70px;
    }
    .page-title {
        font-size: 2rem;
    }
    .header-overlay {
        padding: 30px 0 20px 0;
        min-height: 140px;
    }
}
