/* about.css — À propos — MediProvital */


    /* Variables CSS pour About Page */
    :root {
        --about-primary: #B03A2E;
        --about-secondary: #5C4033;
        --about-wood-light: #D8B384;
        --about-wood-medium: #A67C52;
        --about-neutral: #F5F0E1;
        --about-text: #333;
        --about-text-light: #666;
        --about-success: #28a745;
        --about-success-bg: #d4edda;
        --about-success-text: #155724;
    }

    /* About Page Layout */
    .about-page {
        background: #f8f9fa;
        padding: 60px 0;
    }

    .about-page .section {
        padding: 0;
    }

    /* Hero Section */
    .about-hero {
        background: linear-gradient(135deg, #fff 0%, var(--about-neutral) 100%);
        padding: 60px 40px;
        border-radius: 12px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        text-align: center;
        margin-bottom: 50px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        color: var(--about-secondary);
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
    }

    .about-hero-intro {
        font-size: 1.2rem;
        color: var(--about-text-light);
        max-width: 800px;
        margin: 0 auto 30px;
        line-height: 1.8;
    }

    .about-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: white;
        border-radius: 50px;
        font-size: 15px;
        color: var(--about-wood-medium);
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .about-badge svg {
        width: 20px;
        height: 20px;
        stroke: var(--about-primary);
    }

    /* Mission Cards */
    .mission-cards {
        margin-bottom: 50px;
    }

    .mission-card {
        background: white;
        border-radius: 12px;
        padding: 35px 25px;
        text-align: center;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 2px solid transparent;
    }

    .mission-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-color: var(--about-primary);
    }

    .mission-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--about-primary) 0%, #d64437 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .mission-icon svg {
        width: 40px;
        height: 40px;
        stroke: white;
        stroke-width: 2;
    }

    .mission-card h3 {
        font-size: 1.4rem;
        color: var(--about-secondary);
        margin-bottom: 15px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .mission-card p {
        color: var(--about-text);
        line-height: 1.7;
        margin: 0;
        font-size: 15px;
    }

    /* Content Box */
    .about-content-box {
        background: white;
        border-radius: 12px;
        padding: 50px 40px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        margin-bottom: 40px;
    }

    .about-section {
        margin-bottom: 50px;
        padding-bottom: 40px;
        border-bottom: 2px solid #f0f0f0;
    }

    .about-section:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .about-section h2 {
        font-size: 2rem;
        color: var(--about-secondary);
        margin-bottom: 25px;
        padding-left: 20px;
        border-left: 5px solid var(--about-primary);
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .about-section p {
        color: var(--about-text);
        line-height: 1.9;
        margin-bottom: 20px;
        font-size: 16px;
    }

    /* Value Items Grid */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .value-card {
        padding: 30px 25px;
        background: linear-gradient(135deg, var(--about-neutral) 0%, #f9f5ed 100%);
        border-radius: 10px;
        border-left: 5px solid var(--about-primary);
        transition: all 0.3s ease;
    }

    .value-card:hover {
        transform: translateX(8px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .value-card-icon {
        width: 55px;
        height: 55px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .value-card-icon svg {
        width: 30px;
        height: 30px;
        stroke: var(--about-primary);
        stroke-width: 2.5;
    }

    .value-card h3 {
        font-size: 1.3rem;
        color: var(--about-secondary);
        margin-bottom: 12px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .value-card p {
        color: var(--about-text);
        margin: 0;
        line-height: 1.7;
        font-size: 15px;
    }

    /* Why Choose List */
    .why-list {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }

    .why-list li {
        position: relative;
        padding: 15px 15px 15px 50px;
        margin-bottom: 15px;
        background: var(--about-neutral);
        border-radius: 8px;
        color: var(--about-text);
        line-height: 1.7;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .why-list li:hover {
        background: #ede7d9;
        transform: translateX(5px);
    }

    .why-list li::before {
        content: '✓';
        position: absolute;
        left: 18px;
        top: 15px;
        width: 24px;
        height: 24px;
        background: var(--about-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
    }

    /* Coverage Grid */
    .coverage-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .coverage-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 22px;
        background: white;
        border-radius: 10px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
        font-weight: 600;
        color: var(--about-secondary);
        font-size: 15px;
    }

    .coverage-badge:hover {
        border-color: var(--about-primary);
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .coverage-badge svg {
        width: 22px;
        height: 22px;
        stroke: var(--about-primary);
        stroke-width: 2.5;
        flex-shrink: 0;
    }

    /* Eco Box */
    .eco-commitment-box {
        display: flex;
        gap: 20px;
        padding: 30px;
        background: var(--about-success-bg);
        border-left: 5px solid var(--about-success);
        border-radius: 10px;
        margin: 30px 0;
    }

    .eco-commitment-box svg {
        width: 32px;
        height: 32px;
        stroke: var(--about-success);
        stroke-width: 2.5;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .eco-commitment-box p,
    .eco-commitment-box strong {
        color: var(--about-success-text);
        margin: 0 0 15px 0;
        font-size: 16px;
    }

    .eco-commitment-box strong {
        font-size: 17px;
    }

    .eco-list {
        list-style: none;
        padding: 0;
        margin: 15px 0 0 0;
    }

    .eco-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
        color: var(--about-success-text);
        line-height: 1.7;
        font-size: 15px;
    }

    .eco-list li::before {
        content: '🌱';
        position: absolute;
        left: 0;
        font-size: 20px;
        top: -2px;
    }

    /* CTA Section */
    .about-cta {
        text-align: center;
        padding: 60px 30px;
        background: linear-gradient(135deg, white 0%, var(--about-neutral) 100%);
        border-radius: 12px;
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        margin-top: 50px;
    }

    .cta-icon-wrapper {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--about-primary) 0%, #d64437 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        box-shadow: 0 4px 15px rgba(176, 58, 46, 0.3);
    }

    .cta-icon-wrapper svg {
        width: 45px;
        height: 45px;
        stroke: white;
        stroke-width: 2;
    }

    .about-cta h3 {
        font-size: 2rem;
        color: var(--about-secondary);
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .about-cta p {
        color: var(--about-text-light);
        font-size: 1.1rem;
        margin-bottom: 35px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    .about-cta .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 35px;
        background: var(--about-primary);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(176, 58, 46, 0.3);
    }

    .about-cta .btn:hover {
        background: #8C2D21;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(176, 58, 46, 0.4);
    }

    .about-cta .btn svg {
        width: 20px;
        height: 20px;
        stroke: white;
        stroke-width: 2;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .about-hero h1 {
            font-size: 2rem;
        }

        .about-content-box {
            padding: 35px 25px;
        }

        .about-section h2 {
            font-size: 1.7rem;
        }

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

        .coverage-grid {
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .about-page {
            padding: 40px 0;
        }

        .about-hero {
            padding: 40px 25px;
        }

        .about-hero h1 {
            font-size: 1.8rem;
        }

        .about-hero-intro {
            font-size: 1.05rem;
        }

        .about-content-box {
            padding: 30px 20px;
        }

        .about-section h2 {
            font-size: 1.5rem;
            padding-left: 15px;
        }

        .mission-card {
            padding: 30px 20px;
        }

        .mission-icon {
            width: 70px;
            height: 70px;
        }

        .mission-icon svg {
            width: 35px;
            height: 35px;
        }

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

        .eco-commitment-box {
            flex-direction: column;
            padding: 25px 20px;
        }

        .about-cta {
            padding: 45px 20px;
        }

        .about-cta h3 {
            font-size: 1.6rem;
        }
    }
