 /* FAQ Specific Styles */
        .faq-section {
            padding: 80px 0;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            background: #fff;
        }
        
        .faq-question {
            padding: 20px;
            background: #f8f9fa;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #e9ecef;
        }
        
        .faq-question h5 {
            margin: 0;
            color: #45A555;
            font-weight: 600;
        }
        
        .faq-question .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.collapsed .faq-toggle {
            transform: rotate(0deg);
        }
        
        .faq-question:not(.collapsed) .faq-toggle {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 20px;
            background: #fff;
            border-top: 1px solid #eee;
        }
        
        .faq-category {
            margin-bottom: 40px;
        }
        
        .faq-category h3 {
            color: #45A555;
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .faq-category h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #45A555;
        }
        
        .search-box {
            margin-bottom: 40px;
            position: relative;
        }
        
        .search-box input {
            padding: 15px 20px;
            border-radius: 50px;
            border: 1px solid #ddd;
            width: 100%;
            padding-right: 50px;
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #45A555;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
        }
        
        .no-results {
            text-align: center;
            padding: 40px;
            display: none;
        }
    