/* =============================================================================
   À PROPOS
   ============================================================================= */

.about-page {
    max-width: 1000px;
    padding-top: 50px;
    padding-bottom: 60px;
}

.about-content-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 2.5rem 2.5rem 0.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 64px;
}

.about-section {
    margin-bottom: 64px;
}
.about-section--last {
    margin-bottom: 0.5rem;
}

.about-section__title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

/* Intro */
.about-intro {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}
.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2em;
}

/* Notre histoire / mission / équipe */
.about-story__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-story__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2em;
}

/* Comment ça marche */
.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-values__grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 820px;
    margin: 0 auto;
}
.about-value-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.about-value-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fce8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.about-value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #222;
}
.about-value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* CTA final */
.about-cta {
    background: linear-gradient(135deg, #CC392B, #a92e22);
    border-radius: 18px;
    padding: 48px 32px;
    text-align: center;
    color: #fff;
}
.about-cta h2 {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 10px;
}
.about-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 26px;
    font-size: 1rem;
}
.about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.about-cta__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s ease;
}
.about-cta__btn--primary {
    background: #fff;
    color: #CC392B;
}
.about-cta__btn--primary:hover {
    background: #f4f4f4;
}
.about-cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
}
.about-cta__btn--secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .about-values__grid {
        grid-template-columns: 1fr;
    }
    .about-content-card {
        padding: 1.5rem 1.25rem 0.25rem;
    }
    .about-cta {
        padding: 36px 20px;
    }
    .about-section__title {
        font-size: 1.5rem;
    }
}
