/* Modern FAQ Styles */
        .faq-item-modern {
            background: white;
            border-radius: 1.5rem;
            border: 2px solid #f1f5f9;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .faq-item-modern:hover {
            border-color: #e2e8f0;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: translateY(-2px);
        }

        .faq-item-modern.active {
            border-color: #3b82f6;
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1), 0 10px 10px -5px rgba(59, 130, 246, 0.04);
        }

        .faq-header-modern {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-header-modern:hover {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .faq-question-modern {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
            flex: 1;
            transition: color 0.3s ease;
        }

        .faq-item-modern:hover .faq-question-modern {
            color: #3b82f6;
        }

        .faq-toggle-modern {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid #e2e8f0;
        }

        .faq-item-modern:hover .faq-toggle-modern {
            background: #3b82f6;
            border-color: #3b82f6;
            transform: scale(1.1);
        }

        .faq-item-modern:hover .faq-toggle-modern i {
            color: white !important;
        }

        .faq-item-modern.active .faq-toggle-modern {
            background: #3b82f6;
            border-color: #3b82f6;
            transform: rotate(45deg);
        }

        .faq-item-modern.active .faq-toggle-modern i {
            color: white !important;
        }

        .faq-content-modern {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .faq-item-modern.active .faq-content-modern {
            max-height: 200px;
            border-top: 1px solid #e2e8f0;
        }

        .faq-answer-modern {
            padding: 2rem;
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease 0.1s;
        }

        .faq-item-modern.active .faq-answer-modern {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .faq-header-modern {
                padding: 1.25rem 1.5rem;
            }
            
            .faq-question-modern {
                font-size: 1rem;
            }
            
            .faq-answer-modern {
                padding: 1.5rem;
                font-size: 0.95rem;
            }
            
            .faq-toggle-modern {
                width: 2rem;
                height: 2rem;
            }
        }

        /* Animation for FAQ items on scroll */
        .faq-item-modern {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .faq-item-modern:nth-child(1) { animation-delay: 0.1s; }
        .faq-item-modern:nth-child(2) { animation-delay: 0.2s; }
        .faq-item-modern:nth-child(3) { animation-delay: 0.3s; }
        .faq-item-modern:nth-child(4) { animation-delay: 0.4s; }
        .faq-item-modern:nth-child(5) { animation-delay: 0.5s; }
        .faq-item-modern:nth-child(6) { animation-delay: 0.6s; }
        .faq-item-modern:nth-child(7) { animation-delay: 0.7s; }
        .faq-item-modern:nth-child(8) { animation-delay: 0.8s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Mobile menu styles */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        /* Navigation hover effects */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            transform: translateY(-1px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #7c3aed);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Mobile menu animation */
        @keyframes slideIn {
            from { transform: translateX(-100%); }
            to { transform: translateX(0); }
        }
        
        .mobile-menu-item {
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInItem 0.3s ease forwards;
        }
        
        .mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu-item:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes slideInItem {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        } 