body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        h1 {
            color: #333;
        }

        p {
            color: #555;
        }

        .buttons {
            margin-top: 20px;
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #3498db;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }

        .button:last-child {
            margin-right: 0;
        }

        .button:hover {
            background-color: #1e87db;
        }
/* Styles pour la section de redirection */
        .redirection-section {
            text-align: center;
            margin-top: 20px;
        }

        .redirection-title {
            font-weight: bold;
            font-size: 20px;
            color: #333;
        }

        .redirection-link {
            display: block;
            margin: 10px;
            color: #333;
            text-decoration: none;
            font-size: 16px;
        }

        .redirection-link:hover {
            text-decoration: underline;
        }