
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffc3ed,#fbcbed );
    text-align: center;
    padding: 30px;
}


h1 {
    margin-bottom: 40px;
    color: #333;
}


.btn-retour {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}


.buttons {
    margin-bottom: 60px;
}

.buttons a {
    text-decoration: none;
    padding: 15px 30px;
    margin: 10px;
    background-color: #ffffff;
    color: #000;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.buttons a:hover {
    background-color: #dcd7ff;
    transform: scale(1.05);
}


.card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    margin: 50px auto;
    max-width: 850px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.card:hover {
    transform: translateY(-18px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
}


.card img {
    width: 100%;
    max-width: 360px;
    border-radius: 15px;
    margin-bottom: 25px;
}


.card h2 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #333;
}


.card p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
    color: #555;
}
