/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#eef2f7,#dfe9f3);
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:auto;
    padding:30px 20px;
}

/* TITRES */
h1{
    text-align:center;
    color:#9be15d;
    margin-bottom:15px;
}

h4{
    text-align:center;
    margin-bottom:25px;
}

/* GRID */
.tarifs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

/* CARD */
.price-card{
    background:white;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.3s;
}

.price-card:hover{
    transform:translateY(-5px);
}

/* TITRE */
.price-card h3{
    margin-bottom:15px;
    color:#2c3e50;
}

/* ITEM */
.item{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

/* PRIX */
.price{
    font-weight:bold;
    color:#2e7d32;
}

/* TOTAL */
.total{
    margin-top:15px;
    text-align:center;
    font-weight:bold;
    color:#e53935;
}

/* INFOS IMPORTANTES */
.infos{
    margin-top:50px;
    padding:25px;
    border-radius:20px;

    background:linear-gradient(135deg,#4CAF50,#2e7d32);
    color:white;

    box-shadow:0 15px 40px rgba(0,0,0,0.2);

    text-align:center;
}

/* TITRE INFOS */
.infos-title{
    font-size:20px;
    font-weight:bold;
    margin-bottom:15px;
}

/* TEXTE INFOS */
.infos p{
    margin:12px 0;
    font-size:16px;
}

/* LIENS */
a{
    color:#4CAF50;
    text-decoration:none;
    font-weight:bold;
}

a:hover{
    text-decoration:underline;
}

/* LIENS DANS INFOS */
.infos a{
    color:white;
    text-decoration:underline;
}

.infos a:hover{
    color:#d4ffd9;
}

/* RESPONSIVE */
@media(max-width:700px){

    .price-card{
        padding:15px;
    }

    .infos{
        padding:20px;
    }
}