/* ===== CONTENU SPECIFIQUE A LA PAGE ===== */

.container {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.image img {
    width: 400px;
    height: auto;
    border-radius: 5px;
}

.texte {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 20px;
    margin-top: 0;
    text-align: left;
}

/* Tableau */
table {
    border-collapse: collapse;
    width: 400px;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

th, td {
    padding: 10px;
    border: 1px solid #d0d0d0;
}

th {
    background-color: #f9f9f9;
    font-weight: bold;
}

.col-age {
    background-color: #dedede;
    text-align: left;
    padding-left: 10px;
    font-weight: bold;
}

.col-tarif {
    background-color: #b2b7b7;
    font-weight: bold;
}

.sub-text {
    display: block;
    font-weight: normal;
    font-size: 0.8em;
}

/* ===== RESPONSIVE MOBILE (specifique a cette page) ===== */
@media (max-width: 768px) {

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

    .image img, table {
        width: 100%;
        max-width: 100%;
    }

    table {
        font-size: 0.8rem;
    }

    .texte {
        margin: 0;
        width: 100%;
    }
}
