/* Styles généraux */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
    padding: 0;
}



.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Titre principal */
.tarifs-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #f4b216; /* Couleur dorée */
}

.tarifs-subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-weight: semi-bold;
    margin-bottom: 30px;
    color: #f4b216; /* Couleur dorée */
}

/* Listes des tarifs */
.tarifs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarifs-list li {
    display: grid;
    grid-template-columns: 1fr auto; /* Colonne pour le texte et une pour le prix */
    align-items: center;
    padding: 15px 20px;
    margin: 0;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.tarifs-list li:hover {
    background-color: #fff3d1; /* Fond doré plus clair au survol */
    transform: scale(1.02); /* Légère mise en avant au survol */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Texte des éléments */
.tarifs-list li span {
    font-size: 1rem;
    color: #333;
}

/* Prix */
.price {
    font-weight: bold;
    color: #d48e0c; /* Doré foncé */
    font-size: 1.2rem;
    text-align: right;
}

/* Note */
.note {
    margin-top: 25px;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    text-align: center;
}

/* Sections */
section {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .tarifs-title {
        font-size: 2rem;
    }

    .tarifs-list li {
        grid-template-columns: 1fr auto;
        padding: 10px 15px;
    }

    .price {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .tarifs-title {
        font-size: 1.8rem;
    }

    .tarifs-list li {
        grid-template-columns: 1fr; /* Les éléments s'empilent sur petits écrans */
        text-align: left;
        padding: 10px;
    }

    .price {
        margin-top: 10px;
        text-align: left;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tarifs-title {
        font-size: 1.5rem;
    }

    .tarifs-list li {
        padding: 8px;
    }

    .price {
        font-size: 0.9rem;
    }

    .note {
        font-size: 0.85rem;
    }
}