/* Section contenant le texte et l'image */
#about-page {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro p {
    text-align: center;
    font-size: 1.3em;
    color: #42362d;
    margin-top: 20px;
    line-height: 1.6;
}

.about-content-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    padding: 30px;
    background-color: #fefbf3;
    border-radius: 20px;
    text-align: left;
    max-width: 100%;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 10px 0px #f7e9cf;
}

.about-content-text {
    flex: 1;
    padding-right: 20px;
}

.about-content-text p {
    font-size: 1.3em;
    color: #42362d;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

/* Centrage du bouton d'achat (CTA) */
.buy-btn-container {
    display: flex;
    justify-content: center;
}

.buy-btn {
    display: inline-block;
    background-color: #7d6256;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s;
}

.buy-btn:hover {
    background-color: #42362d;
    color: white;
    transform: scale(1.05);
}

.about-content-image {
    flex: 1;
}

.about-content-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: auto;
    max-height: 600px;
}

/* Section des valeurs */
.about-values {
    text-align: center;
    margin: 50px auto;
}

.value-tiles {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-tile {
    background-color: #fffbf3;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 5px 5px 10px 0px #f7e9cf;
}

.value-tile:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 10px 0px #f7e9cf;
}

.value-tile i {
    font-size: 5em;
    color: #7d6256;
    margin-bottom: 15px;
}

.value-tile p {
    font-size: 1.1em;
    color: #42362d;
    line-height: 1.5;
}

/* Responsive pour tablettes */
@media (max-width: 1024px) {
    .about-content-visual {
        flex-direction: column;
        width: 90%;
    }

    .about-content-text h2 {
        font-size: 2.2em;
    }

    .about-content-image img {
        max-width: 100%;
    }

    .value-tiles {
        flex-direction: column;
        gap: 30px;
    }

    /* Ajouter une marge en bas du bouton pour éviter qu'il soit collé à l'image */
    .buy-btn-container {
        margin-bottom: 20px;
    }
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
    .about-content-visual {
        width: 90%;
        padding: 20px; /* Équilibrer les marges à gauche et à droite */
    }

    .about-content-text h2 {
        font-size: 2em;
    }

    .value-tile p {
        font-size: 1em;
    }

    .value-tiles {
        gap: 20px;
    }

    /* Ajouter une marge en bas du bouton pour éviter qu'il soit collé à l'image */
    .buy-btn-container {
        margin-bottom: 20px;
    }
}

/* Améliorer l'accessibilité des liens */
.internal-link {
    color: #7d6256;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.internal-link:hover {
    color: #42362d;
}