/* Start custom CSS */.faq-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            margin-top: 80px;
        }
        
        /* Header fijo */
        
        .faq-header-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .faq-header h1 {
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        /* Buscador */
        .search-box {
            margin-top: 15px;
        }
        
        .search-box input {
            width: 100%;
            max-width: 500px;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }
        
        /* Navegación lateral */
        .faq-nav {
            position: sticky;
            top: 100px;
            height: fit-content;
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-nav h2 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        .faq-nav ul {
            list-style: none;
        }
        
        .faq-nav li {
            margin-bottom: 8px;
        }
        
        .faq-nav a {
            color: #555;
            text-decoration: none;
            display: block;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s;
            font-size: 14px;
        }
        
        .faq-nav a:hover {
            background-color: #f0f7ff;
            color: #3498db;
            padding-left: 16px;
        }
        
        .faq-nav a.active {
            background-color: #3498db;
            color: white;
            font-weight: 500;
        }
        
        /* Contenido principal */
        .faq-content {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-section {
            margin-bottom: 50px;
            scroll-margin-top: 120px;
        }
        
        .faq-section h2 {
            color: #2c3e50;
            font-size: 26px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }
        
        .faq-item {
            margin-bottom: 30px;
            scroll-margin-top: 120px;
        }
        
        .faq-item h3 {
            color: #34495e;
            font-size: 18px;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .faq-item p {
            color: #555;
            margin-bottom: 12px;
        }
        
        .faq-item ul, .faq-item ol {
            margin-left: 20px;
            margin-bottom: 12px;
        }
        
        .faq-item li {
            margin-bottom: 8px;
            color: #555;
        }
        
        .faq-item strong {
            color: #2c3e50;
            font-weight: 600;
        }
        
        .faq-item a {
            color: #3498db;
            text-decoration: none;
        }
        
        .faq-item a:hover {
            text-decoration: underline;
        }
        
        /* Separador visual */
        .separator {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e0e0, transparent);
            margin: 30px 0;
        }
        
        /* Mensajes de búsqueda */
        .search-message {
            display: none;
            padding: 20px;
            background-color: #fff3cd;
            border-left: 4px solid #ffc107;
            border-radius: 6px;
            margin-bottom: 20px;
        }
        
        .no-results {
            display: none;
            text-align: center;
            padding: 60px 20px;
        }
        
        .no-results h3 {
            color: #888;
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .faq-container {
                grid-template-columns: 1fr;
                margin-top: 140px;
            }
            
            .faq-nav {
                position: static;
                order: 2;
                margin-top: 30px;
            }
            
            .faq-content {
                order: 1;
            }
        }
        
        @media (max-width: 640px) {
            .faq-header h1 {
                font-size: 22px;
            }
            
            .faq-content {
                padding: 25px;
            }
            
            .faq-section h2 {
                font-size: 22px;
            }
            
            .faq-item h3 {
                font-size: 16px;
            }
        }
        
        /* Highlight de búsqueda */
        .highlight {
            background-color: #fff176;
            padding: 2px 4px;
            border-radius: 3px;
        }
        
        /* Icono de búsqueda */
        .search-box {
            position: relative;
        }
        
        .search-box::before {
            content: "🔍";
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            pointer-events: none;
        }
        
        .search-box input {
            padding-left: 45px;
        }/* End custom CSS */