/* Estilos CSS */
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: flex-start; /* Alínea hacia el lado izquierdo */
            align-items: center;
            background: url('1.png') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
        }

        .container {
            width: 100%;
            max-width: 400px;
            margin-left: 400px; /* Margen para pantallas grandes */
            text-align: left;
        }

        .logo {
            width: 150px;
            margin-bottom: 20px;
        }

        .contact-info {
            margin-bottom: 20px;
        }

        .contact-info h2 {
            margin: 0;
            font-size: 0.8em;
        }

        .contact-info p {
            margin: 5px 0;
            line-height: 1.5;
            font-size: 0.8em;
        }

        .contact-info a {
            color: #057296; /* Celeste */
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .website {
            margin-top: 20px;
            font-weight: bold;
        }

        .button-contact {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #005e7d; /* Celeste */
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            text-align: center;
        }

        .button-contact:hover {
            background-color: #005e7d; /* Azul ligeramente más oscuro para hover */
        }

        /* Estilos para dispositivos móviles */
        @media (max-width: 768px) {
            body, html {
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .container {
                margin-left: 0; /* Quitar el margen izquierdo en móviles */
                text-align: center;
            }

            .logo {
                margin: 0 auto 20px;
            }
        }