@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            height: 100%;
            color: #333;
            background-color: #f0f8ff;
            scroll-behavior: smooth;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgb(30, 64, 175);
            color: white;
            transition: all 0.3s ease;
        }

        header.desplazado {
            padding: 1.3rem 2rem;
            background-color:rgb(30, 64, 175);
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 45%;
        }

        .logo span {
            font-size: 1.5rem;
            font-weight: bold;
        }

        main {
            max-width: 800px;
            margin: 100px auto 0;
            padding: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: aparecer 1s ease forwards;
        }

        @keyframes aparecer {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #003366;
        }

        .mensaje-ayuda {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .enlaces-sociales {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 10rem;
        }

        .enlaces-sociales a {
            color: #003366;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .enlaces-sociales a:hover {
            color: #66ccff;
            transform: translateY(-3px);
        }

        .seccion-faq {
            margin-top: 3rem;
        }

        .item-faq {
            margin-bottom: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .item-faq:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .pregunta-faq {
            background-color: #003366;
            color: white;
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .pregunta-faq:hover {
            background-color: #004080;
        }

        .respuesta-faq {
            padding: 0;
            color: white;
            background-color: rgb(61, 98, 47);
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .respuesta-faq.activa {
            padding: 1rem;
            max-height: 500px;
        }

        .icono-toggle {
            transition: transform 0.3s ease;
        }

        .pregunta-faq.activa .icono-toggle {
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem;
                justify-content: center;
            }
            
            header.desplazado {
                padding: 0.8rem 1rem;
            }
            
            .logo img {
                width: 35px;
                height: 35px;
                margin-right: 8px;
            }
            
            .logo span {
                font-size: 1.3rem;
            }
            
            main {
                margin: 80px auto 0;
                padding: 1rem;
                max-width: 95%;
            }
            
            h1 {
                font-size: 2rem;
                text-align: center;
                margin-bottom: 0.8rem;
            }
            
            .mensaje-ayuda {
                font-size: 1rem;
                margin-bottom: 1.5rem;
                text-align: center;
            }
            
            .enlaces-sociales {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
                margin-bottom: 2rem;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .enlaces-sociales a {
                font-size: 1rem;
                padding: 0.8rem;
                background-color: rgba(0, 51, 102, 0.1);
                border-radius: 8px;
                text-align: center;
                text-decoration: none;
                border: 1px solid #003366;
                transition: all 0.3s ease;
            }
            
            .enlaces-sociales a:hover {
                background-color: rgba(0, 51, 102, 0.2);
                transform: translateY(-2px);
            }
            
            .seccion-faq {
                margin-top: 2rem;
            }
            
            .seccion-faq h2 {
                font-size: 1.5rem;
                text-align: center;
                margin-bottom: 1rem;
                color: #003366;
            }
            
            .pregunta-faq {
                padding: 0.8rem;
                font-size: 0.9rem;
                flex-wrap: wrap;
            }
            
            .respuesta-faq {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .respuesta-faq.activa {
                padding: 0.8rem;
                max-height: 400px;
            }
            
            .respuesta-faq ul {
                margin-left: 1rem;
            }
            
            .respuesta-faq li {
                margin-bottom: 0.3rem;
            }
            
            .icono-toggle {
                font-size: 1.2rem;
                margin-left: 0.5rem;
            }
        }