body { 
            font-family: 'Helvetica', Arial, sans-serif; 
            line-height: 1.6; 
            color: #333; 
            margin: 0 auto; 
            padding: 20px; 
            text-align: center; 
            background-color: #f0f4f8; /* Azul muy pálido de fondo */
            max-width: 1100px;
        }
        .container { 
            background: white; 
            padding: 40px; 
            border-radius: 15px; 
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
            border-top: 10px solid #1A73E8; /* El Azul de la cabecera oficial */
            margin-top: 20px;
            width: 95%;
            max-width: 1100px;
        }
        h1 { 
            color: #FF6600; /* Naranja Citrus para el título */
            font-size: 28px;
            margin-bottom: 10px;
        }
        h2{
            font-size: 20px;
        }
        .subheadline { 
            font-size: 19px; 
            color: #555; 
            margin-bottom: 30px;
            font-weight: 500;
            padding: 15px;
        }
        .mark{
            display: flexbox;
            flex-direction: row;
            width: 100%;
        }
        .product-img { 
            width: 45%; 
            margin-bottom: 25px;
            border-radius: 8px;
        }
        .features {
            text-align: left;
            display: inline-block;
            margin: 0 auto 30px auto;
            padding: 0;
            list-style: none;
        }
        .features li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .cta-button { 
            display: inline-block; 
            background-color: #00C853; /* Verde del botón oficial */
            color: white; 
            padding: 20px 35px; 
            text-decoration: none; 
            font-weight: bold; 
            font-size: 22px; 
            border-radius: 50px; 
            box-shadow: 0 4px 10px rgba(0,200,83,0.3);
            transition: transform 0.2s, background 0.3s;
        }
        .cta-button{
            font-size: 1.5rem;
        }
        .cta-button:hover { 
            transform: scale(1.05); 
            background-color: #00a846;
        }
        .footer-note { 
            font-size: 15px; 
            color: #999; 
            margin-top: 40px; 
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        .footer{
            margin-top: 50px; 
            border-top: 1px solid #ddd; 
            padding-top: 20px; 
            font-size: 15px; 
            color: #777;
        }
        .resilifit-link{
            color: #777; 
            text-decoration: none; 
            margin-right: 15px; 
            font-size: 18px; 
            font-weight: bold;
        }
        .main-header {
            width: 100%;
            background-color: #ffffff;
            padding: 5px 0;
            border-bottom: 1px solid #eeeeee; 
        }

        .header-flex {
            display: flex;
            justify-content: space-between; 
            align-items: center;
        }

        .logo {
            height: auto;
            max-height: 60px; /* Ajusta este valor según tu logo */
            width: auto;
            display: block;
            border-radius: 10px;
        }

/* En móviles, centramos el logo para que sea más fácil de ver */
@media (max-width: 600px) {
    .header-flex {
        justify-content: center;
    }
    .logo {
        max-height: 50px;
    }
}