/* Header de la page À propos */
.page-header {
    background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-heading {
    color: var(--primary-dark-blue);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

/* Cartes Objectifs */
.objective-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--accent-gold);
}

.objective-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.8rem;
}

/* Cartes Commissions */
.commission-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.commission-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.commission-icon {
    font-size: 2.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .page-header {
        padding: 120px 0 60px;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 50px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-heading {
        font-size: 1.8rem;
    }
}