/* Reset y estilos base */
        body {
            font-family: Arial, sans-serif;
            background-color: #FFF7F2;
            color: black;
            margin: 0;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            max-width: 600px;
            width: 100%;
        }

        /* Cabecera optimizada con Flexbox */
        header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0; /* Evita que la imagen se deforme en pantallas pequeñas */
        }

        .header-text {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        h1 {
            font-size: 24px;
            margin: 0 0 5px 0;
        }

        h2 {
            font-size: 14px;
            font-weight: normal;
            margin: 0;
        }

        /* Tipografía y espaciado general */
        p {
            line-height: 1.5;
            margin-bottom: 20px;
        }

        ul {
            line-height: 1.6;
            margin-bottom: 30px;
            padding-left: 20px;
        }

        /* Formularios */
        .form-section {
            margin: 20px 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        input[type="email"] {
            flex: 1;
            padding: 10px;
            font-family: Arial, sans-serif;
            border: 1px solid #ccc;
            min-width: 200px;
        }

        button {
            padding: 10px 20px;
            font-family: Arial, sans-serif;
            background-color: black;
            color: #FFF7F2;
            border: none;
            cursor: pointer;
            font-weight: bold;
        }

        button:hover {
            background-color: #333;
        }

        /* Mensaje de éxito oculto por defecto */
        .success-message {
            display: none;
            font-weight: bold;
            margin: 20px 0;
        }

        /* Footer */
        footer {
            margin-top: 50px;
            text-align: center;
            font-size: 12px;
            border-top: 1px solid #ddd;
            padding-top: 20px;
            width: 100%;
        }

        /* Responsividad para móviles muy pequeños */
        @media (max-width: 480px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }
        }