/* ============================================================
   apropos.css - Page A propos de Transgo
   ============================================================ */

.apropos-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* ---------- HERO ---------- */
.apropos-hero {
    text-align: center;
    margin-bottom: 48px;
}

.apropos-hero h1 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #14244a;
    margin-bottom: 16px;
    line-height: 1.25;
}

.apropos-tagline {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.15rem;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- SECTIONS ---------- */
.apropos-section {
    margin-bottom: 48px;
}

.apropos-section h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #14244a;
    margin-bottom: 16px;
}

.apropos-section p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ---------- STATS ---------- */
.apropos-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.apropos-stat {
    text-align: center;
    padding: 24px 12px;
    background: #f4f6f9;
    border-radius: 12px;
}

.apropos-stat-number {
    display: block;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #188cff;
    margin-bottom: 6px;
}

.apropos-stat-label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

/* ---------- GRILLE ENGAGEMENTS ---------- */
.apropos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.apropos-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 3px 16px rgba(80, 80, 110, 0.08);
}

.apropos-card-icon {
    font-size: 28px;
    color: #188cff;
    margin-bottom: 12px;
}

.apropos-card h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #14244a;
    margin: 0 0 10px;
}

.apropos-card p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* ---------- FONCTIONNALITES ---------- */
.apropos-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apropos-features li {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.apropos-features li:last-child {
    border-bottom: none;
}

.apropos-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #188cff;
    font-weight: 700;
    font-size: 16px;
}

/* ---------- CTA ---------- */
.apropos-cta {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, #14244a 0%, #1a3a6c 100%);
    border-radius: 16px;
    margin-top: 48px;
}

.apropos-cta h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.apropos-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #188cff;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(24, 140, 255, 0.3);
}

.apropos-cta-btn:hover {
    background: #1569b4;
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .apropos-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .apropos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .apropos-container {
        padding: 24px 14px 40px;
    }

    .apropos-hero h1 {
        font-size: 1.7rem;
    }

    .apropos-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .apropos-stat {
        padding: 18px 8px;
    }

    .apropos-stat-number {
        font-size: 1.5rem;
    }
}
