 .faq-hero {
            background: linear-gradient(135deg, var(--primary-dark-green) 0%, #00695c 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .faq-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('./assets/images/SVG/graduation-cap.png') no-repeat center center;
            background-size: contain;
            opacity: 0.05;
            transform: rotate(-15deg) scale(1.5);
        }

        .faq-category-nav {
            position: sticky;
            top: 100px;
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .category-link {
            display: block;
            padding: 12px 15px;
            color: #444;
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .category-link:hover, .category-link.active {
            background: var(--primary-dark-green);
            color: white !important;
            transform: translateX(5px);
        }

        .faq-item {
            border: 1px solid #eee;
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-color: var(--primary-dark-green);
        }

        .faq-header {
            padding: 20px 25px;
            cursor: pointer;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question {
            font-weight: 700;
            color: #333;
            margin: 0;
            font-size: 1.1rem;
        }

        .faq-body {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f9f9f9;
        }

        .faq-item.active .faq-body {
            padding: 20px 25px;
            max-height: 500px;
            border-top: 1px solid #eee;
        }

        .faq-icon-toggle {
            width: 30px;
            height: 30px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon-toggle {
            background: var(--primary-dark-green);
            color: white;
            transform: rotate(180deg);
        }

        .search-container {
            max-width: 600px;
            margin: -30px auto 0;
            position: relative;
            z-index: 10;
        }

        .search-input {
            width: 100%;
            padding: 18px 30px;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            font-size: 1.1rem;
        }

        .section-title-line {
            width: 60px;
            height: 4px;
            background: var(--primary-dark-green);
            margin-top: 10px;
        }

        @media (max-width: 991px) {
            .faq-category-nav {
                position: static;
                margin-bottom: 40px;
            }
        }
        [data-aos^=fade][data-aos^=fade] {
            opacity: 1 !important;
            transition-property: opacity, transform;
        }