    /* About Section */
    .about-section {
        padding: 80px 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .about-intro {
        text-align: center;
        margin-bottom: 80px;
    }

    .about-intro h2 {
        font-size: 36px;
        color: #1e293b;
        margin-bottom: 20px;
    }

    .about-intro p {
        font-size: 18px;
        color: #64748b;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Story Timeline */
    .story-section {
        background: #f8fafc;
        padding: 80px 50px;
    }

    .story-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .story-section h2 {
        font-size: 36px;
        color: #1e293b;
        text-align: center;
        margin-bottom: 60px;
    }

    .timeline {
        position: relative;
        padding-left: 50px;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, #27ae60 0%, #2ecc71 100%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 50px;
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .timeline-item:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .timeline-item::before {
        content: "";
        position: absolute;
        left: -35px;
        top: 35px;
        width: 15px;
        height: 15px;
        background: #27ae60;
        border-radius: 50%;
        box-shadow: 0 0 0 5px #fff, 0 0 0 7px #27ae60;
    }

    .timeline-year {
        color: #27ae60;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        color: #1e293b;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .timeline-content p {
        color: #64748b;
        line-height: 1.6;
    }

    /* Mission & Vision */
    .mission-vision {
        padding: 80px 50px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .mission-vision h2 {
        font-size: 36px;
        color: #1e293b;
        text-align: center;
        margin-bottom: 60px;
    }

    .mv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .mv-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s;
    }

    .mv-card:hover {
        transform: translateY(-10px);
    }

    .mv-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 36px;
        color: white;
    }

    .mv-card h3 {
        font-size: 24px;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .mv-card p {
        color: #64748b;
        line-height: 1.8;
        font-size: 16px;
        text-align: left;
    }

    .mv-card p br {
        margin-bottom: 8px;
    }

    /* Values */
    .values-section {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        padding: 80px 50px;
        color: white;
    }

    .values-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .values-section h2 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 60px;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    /* Centrer les 2 derniers éléments */
    .value-card:nth-last-child(1),
    .value-card:nth-last-child(2) {
        grid-column: span 1;
    }

    @supports (grid-template-columns: subgrid) or (display: grid) {
        .values-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .value-card:nth-child(5) {
            grid-column: 2 / 3;
        }

        .value-card:nth-child(6) {
            grid-column: 3 / 4;
        }
    }

    .value-card {
        background: rgba(255, 255, 255, 0.1);
        padding: 35px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        transition: all 0.3s;
    }

    .value-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .value-icon {
        font-size: 48px;
        color: #27ae60;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .value-card p {
        color: #cbd5e1;
        line-height: 1.6;
        font-size: 15px;
    }

    /* Team Section */
    .team-section {
        padding: 80px 50px;
        background: white;
    }

    .team-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .team-section h2 {
        font-size: 36px;
        color: #1e293b;
        text-align: center;
        margin-bottom: 20px;
    }

    .team-intro {
        text-align: center;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto 60px;
        font-size: 16px;
        line-height: 1.6;
    }

    .team-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .team-stat {
        text-align: center;
        padding: 30px;
        background: #f8fafc;
        border-radius: 15px;
        transition: transform 0.3s;
    }

    .team-stat:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 42px;
        font-weight: bold;
        color: #27ae60;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #64748b;
        font-size: 16px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .about-section,
        .story-section,
        .mission-vision,
        .team-section {
            padding: 60px 20px;
        }

        .mv-grid {
            grid-template-columns: 1fr;
        }

        .team-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .timeline {
            padding-left: 30px;
        }
    }

    @media (max-width: 1024px) {
        .values-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }

        .value-card:nth-child(5) {
            grid-column: 1 / 2 !important;
        }

        .value-card:nth-child(6) {
            grid-column: 2 / 3 !important;
        }
    }

    @media (max-width: 768px) {
        .values-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }

        .value-card:nth-child(5) {
            grid-column: 1 / 2 !important;
        }

        .value-card:nth-child(6) {
            grid-column: 2 / 3 !important;
        }
    }

    @media (max-width: 480px) {
        .team-stats {
            grid-template-columns: 1fr;
        }

        .values-grid {
            grid-template-columns: 1fr !important;
        }

        .value-card:nth-child(5),
        .value-card:nth-child(6) {
            grid-column: 1 / 2 !important;
        }
    }
