
    /* AutoFAQ Genius Frontend Styles */
    .autofaq-search-container { margin: 20px 0; }
    
    /* FAQ Item Styling for Archives and Search */
    .autofaq-item {
        margin-bottom: 20px;
        border: 1px solid #e1e5e9;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .autofaq-question {
        padding: 20px;
        background: #f8f9fa;
        cursor: pointer;
        font-weight: 600;
        font-size: 16px;
        color: #2c3e50;
        border-bottom: 1px solid #e1e5e9;
        position: relative;
        transition: background-color 0.2s ease;
    }
    
    .autofaq-question:hover {
        background: #e9ecef;
    }
    
    .autofaq-question:focus {
        outline: 2px solid #0073aa;
        outline-offset: -2px;
    }
    
    .autofaq-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: bold;
        color: #0073aa;
        transition: transform 0.2s ease;
    }
    
    .autofaq-answer {
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: #ffffff;
    }
    
    .autofaq-answer.active {
        padding: 20px;
        max-height: 1000px;
    }
    
    .autofaq-answer p {
        margin-bottom: 15px;
        line-height: 1.6;
        color: #444;
    }
    
    .autofaq-answer p:last-child {
        margin-bottom: 0;
    }
    
    /* Single FAQ Page Styling */
    .autofaq-single-content {
        line-height: 1.6;
        color: #444;
    }
    
    /* Related Content Styling */
    .autofaq-related-content {
        background: #f8f9fa;
        padding: 20px;
        border-left: 4px solid #0073aa;
        margin: 30px 0;
        border-radius: 4px;
    }
    .autofaq-related-content h3 {
        margin-top: 0;
        color: #0073aa;
        font-size: 18px;
    }
    .autofaq-related-content ul {
        margin-bottom: 0;
    }
    .autofaq-related-content li {
        margin-bottom: 8px;
    }
    .autofaq-related-content a {
        color: #0073aa;
        text-decoration: none;
        font-weight: 500;
    }
    .autofaq-related-content a:hover {
        text-decoration: underline;
    }
    .autofaq-related-content em {
        color: #666;
        font-size: 0.9em;
    }
    
    /* Search Form Styling */
    .autofaq-search-form {
        margin-bottom: 20px;
    }
    .autofaq-search-form input {
        width: 70%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .autofaq-search-form button {
        padding: 10px 20px;
        background: #0073aa;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    .autofaq-filters {
        margin-bottom: 20px;
    }
    .autofaq-filters select {
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .autofaq-question {
            padding: 15px;
            font-size: 15px;
        }
        
        .autofaq-answer.active {
            padding: 15px;
        }
        
        .autofaq-toggle {
            right: 15px;
        }
        
        .autofaq-search-form input {
            width: 100%;
            margin-bottom: 10px;
        }
    }
    