
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
            color: white;
        }
        
        .faq-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .faq-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .faq-container {
            max-width: 70%;
            margin: 0 auto;
        }
        .accordion {
            padding-left: 20px;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 20px;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .accordion-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }
        
        .accordion-button {
            background: white;
            border: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 25px 30px;
            color: #333;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: none;
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            content: '\f068';
            transform: rotate(0deg);
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
        }
        
        .accordion-body {
            padding: 30px;
            background: white;
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
        }
        
        .faq-icon {
            color: #667eea;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .search-box {
            margin-bottom: 40px;
        }
        
        .search-input {
            border-radius: 50px;
            padding: 15px 25px;
            font-size: 1.1rem;
            border: 3px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
        }
        
        .search-input:focus {
            border-color: rgba(255,255,255,0.8);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
            background: white;
        }
        
        .no-results {
            text-align: center;
            color: white;
            font-size: 1.2rem;
            margin-top: 40px;
            display: none;
        }
        
        @media (max-width: 768px) {
            .faq-header h1 {
                font-size: 2.2rem;
            }
            
            .accordion-button {
                padding: 20px;
                font-size: 1rem;
            }
            
            .accordion-body {
                padding: 20px;
            }
        }