.about-page {
    background: #FAF6F1;
    min-height: 100vh;
    padding-bottom: 80px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 20px;
}

.about-logo img {
    width: 300px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text {
    background: #F4EBE0;
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 25px;
}

/* =========================
   RESPONSIVE À PROPOS
========================= */
.about-logo {
    display: flex;
    justify-content: center;
}

.about-text p,
.about-text li {
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .about-page {
        padding-bottom: 60px;
    }

    .about-logo img {
        width: 240px;
        height: 210px;
    }

    .about-text {
        margin-top: 32px;
        padding: 30px 24px;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 36px;
    }

    .about-logo img {
        width: 205px;
        height: 180px;
    }

    .about-text {
        margin-top: 26px;
        padding: 24px 18px;
        border-radius: 16px;
    }
}

