/* ==========================================
   recrutement.css – Page Recrutement
   ECT Sécurité
========================================== */

/* --- Section Recrutement --- */
.recrutement {
    padding: 70px 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.recrutement h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.recrutement>p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Bloc info recrutement --- */
.recrutement-info {
    text-align: left;
    margin-bottom: 40px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #c8a951;
}

.recrutement-info h3 {
    margin-top: 20px;
    color: #c8a951;
    font-size: 1.1rem;
}

.recrutement-info h3:first-child {
    margin-top: 0;
}

.recrutement-info ul {
    margin: 10px 0 20px 20px;
    list-style-type: disc;
    line-height: 1.7;
}

.recrutement-info p {
    font-size: 1rem;
    line-height: 1.7;
}

.recrutement .btn {
    font-size: 1.1rem;
    padding: 14px 30px;
    margin-top: 10px;
}

/* Mode clair */
.light-mode .recrutement-info {
    background: #fff;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .recrutement {
        padding: 50px 20px;
    }

    .recrutement-info {
        padding: 20px;
    }
}