
        /* Styles généraux */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #fde2e4; /* Couleur de fond douce */
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            min-height: 100vh;
        }

        /* Titre de la page */
        h1 {
            color: #e91e63;
            font-size: 2.5em;
            font-family: 'Cursive', sans-serif;
            text-shadow: 2px 2px #fcc;
            text-align: center;
            margin: 0;
            margin-bottom: 20px;
        }

        /* Image */
        .content-image {
            width: 80%;
            max-width: 400px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(233, 30, 99, 0.3);
            margin-bottom: 20px;
        }

        /* Texte */
        .content-text, .message-text {
            font-size: 1.2em;
            color: #555;
            max-width: 600px;
            text-align: center;
            line-height: 1.6;
            background-color: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        /* Bouton retour */
        .back-button {
            margin-top: 30px;
            padding: 10px 20px;
            color: #ffffff;
            background-color: #e91e63;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1em;
            transition: background 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .back-button:hover {
            background-color: #c2185b;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }