/* Section À propos */
.about-section {
    padding: 40px 20px;
    background-color: rgb(255, 255, 255);
    font-family: 'Rubik', sans-serif;
    color: #333;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h4 {
    font-size: 26px; /* Légèrement agrandi pour plus de visibilité */
    font-weight: bold;
    color: #0275b9;
    margin-bottom: 20px;
    text-align: center;
}

.about-content h2 {
    font-size: 32px; /* Agrandi pour renforcer la hiérarchie */
    color: #0275b9;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;  /* Centrer le texte */
    background-color: rgb(220, 247, 168);
    padding: 10px 0; /* Ajouter un peu de padding pour équilibrer le texte */
}

.about-content p {
    font-size: 18px; /* Augmenter légèrement la taille pour plus de confort */
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.advantage {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advantage h3 {
    font-size: 22px; /* Augmenter légèrement pour renforcer l'importance */
    color: #0275b9;
    margin-bottom: 10px;
}

.why-choose-us {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.why-choose-us-image {
    flex: 1;
}

.why-choose-us-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.why-choose-us ul {
    flex: 2;
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.why-choose-us li::before {
    content: "✔";
    color: #0275b9;
    position: absolute;
    left: 0;
}

.call-to-action {
    text-align: center;
    background-color: #0275b9;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.call-to-action p {
    font-size: 20px; /* Agrandi légèrement pour plus d'impact */
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffbf10;
    color: #0275b9;
    padding: 12px 24px; /* Légèrement plus large */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e0a80d;
}

.divider {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

/* Ajout de media queries pour s'adapter aux différents écrans */

/* Petits écrans (smartphones) */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .container {
        width: 95%;
        padding: 10px;
    }

    .about-grid {
        flex-direction: column;
        gap: 20px;
    }

    .about-text, .about-image {
        flex: 1;
        width: 100%;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 15px;
    }

    .advantages-grid {
        gap: 15px;
    }

    .advantage h3 {
        font-size: 18px;
    }

    .call-to-action p {
        font-size: 18px;
    }
}

/* Tablettes (écrans moyens) */
@media (min-width: 577px) and (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-grid {
        gap: 30px;
    }

    .advantage h3 {
        font-size: 20px;
    }
}

/* Grands écrans */
@media (min-width: 1440px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .menu {
        justify-content: space-between;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}