        body {
            font-family: 'Rubik', sans-serif;
            background-color: #f3f3f3;
            margin: 0;
            padding: 0;
        }
        
        /* Header Navigation */
        .header-navigation {
            background: #ffffff;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-menu {
            list-style: none;
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        
        .nav-menu li a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .nav-menu li a:hover {
            color: #705941;
        }
        
        .btn-admin {
            background: #EEBA0B;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-admin:hover {
            background: #d4a509;
            transform: scale(1.1);
        }
        
        /* Banner */
        .banner-ayuda {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            margin-bottom: 3rem;

        }
        
        .container-ayuda {
            max-width: 75%;
            margin: 0 auto;
            padding: 40px 20px;
        }
        

        
        .subtitulo-seccion {
            text-align: left;
            color: #000000;
            margin-bottom: 40px;
            font-size: 40px;
/*             border-bottom: 6px solid #EEBA0B;
            max-width: 27rem; */
        }
        
        .grid-botones {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
            margin-top: 30px;
            margin-bottom: 30px;
            
        }
        
        .boton-ayuda {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #4d3d2d;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .boton-ayuda:hover {
            background: #EEBA0B;
            color: #000;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(238, 186, 11, 0.3);
            text-decoration: none;
        }
        
        .boton-ayuda i {
            font-size: 48px;
            color: #EEBA0B;
        }
        
        .boton-ayuda:hover i {
            color: #000;
        }
        
        .boton-ayuda h3 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
        }
        
        .boton-ayuda p {
            margin: 0;
            font-size: 14px;
            opacity: 0.8;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .banner-ayuda {
                height: 150px;
            }
        }






        