 /* Estilos generales */
        body {
            margin: 0;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background: linear-gradient(135deg, #74ebd5, #ACB6E5);
            color: #333;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Contenedor principal */
        .container {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            max-width: 600px;
            width: 90%;
            text-align: center;
        }

        /* Título principal */
        h1 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #334e68;
        }

        /* Información */
        p {
            font-size: 1.2em;
            margin: 10px 0;
            line-height: 1.5;
        }

        /* Estilo para el botón */
        .button {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 25px;
            font-size: 1em;
            color: #fff;
            background-color: #334e68;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }

        /* Hover del botón */
        .button:hover {
            background-color: #486582;
        }