    

        .myFontSize {
            font-size: 22px;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --dark-bg: #0d163e;
            --card-bg: rgba(255, 255, 255, 0.03);
            --border-color: rgba(255, 95, 21, 0.2);
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #0d163e 50%, #1a1f3a 100%);
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }


        /* Advanced Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 95, 21, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 168, 2, 0.08) 0%, transparent 50%);
            animation: bgShift 20s ease-in-out infinite;
        }

        @keyframes bgShift {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-50px, -50px);
            }
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 25s infinite ease-in-out;
        }

        .shape1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.15), transparent);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .shape2 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 168, 2, 0.12), transparent);
            top: 40%;
            right: -100px;
            animation-delay: 7s;
        }

        .shape3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.1), transparent);
            bottom: -50px;
            left: 50%;
            animation-delay: 14s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(80px, 80px) scale(1.1);
            }

            66% {
                transform: translate(-80px, 80px) scale(0.9);
            }
        }

        .hero-section {
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
            position: relative;
            min-height: 75vh;
            display: flex;
            padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
            align-items: center;
            overflow: hidden;
            margin-top: 5rem;
            border-bottom: 4px solid var(--primary-orange);
            border-radius: 0 0 30px 30px;
        }

        .hero-section .container {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
        }

        @media (min-width: 1200px) and (max-width: 1900px) {
            .hero-section {
                padding: 55px 20px !important;
            }
        }

        .hero-section .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            min-height: 56.5vh;
        }

        /* Left Content */
        .hero-section .hero-text {
            position: relative;
            z-index: 3;
            margin-top: 0;
            max-width: 700px;
            width: 100%;
        }

        .hero-section .hero-badge {
            display: inline-flex !important;
            align-items: center !important;
            gap: 10px !important;
            background: rgba(255, 95, 21, 0.1) !important;
            border: 2px solid rgba(255, 95, 21, 0.3) !important;
            color: var(--secondary-orange) !important;
            padding: 12px 24px !important;
            border-radius: 50px !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            margin-bottom: 30px !important;
            backdrop-filter: blur(10px) !important;
            animation: slideInLeft 1s ease-out !important;
        }

        .hero-section .hero-badge i {
            font-size: 16px !important;
            animation: pulse 2s infinite !important;
        }

        .hero-section .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 25px;
            animation: slideInLeft 1.2s ease-out 0.3s both;
        }

        .hero-section .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
            color: rgba(255, 255, 255, 0.85) !important;
            line-height: 1.6 !important;
            margin-bottom: 35px !important;
            animation: slideInLeft 1.2s ease-out 0.6s both !important;
        }

        .hero-section .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }

        .hero-section .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-section .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-section .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: white;
            text-decoration: none;
        }

        .hero-section .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-section .hero-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 35px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .hero-section .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-3px);
            text-decoration: none;
        }

        /* Right Visual */
        .hero-section .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            animation: slideInRight 1.2s ease-out 0.6s both;
            height: 100%;
            max-height: calc(100vh - 200px);
            width: 100%;
            max-width: 600px;
            justify-self: end;
        }

        /* Professional FAQ Visual */
        .faq-visual-professional {
            position: relative;
            width: 100%;
            max-width: 550px;
            margin: 0 auto;
        }

        /* Main Knowledge Base Card */
        .knowledge-base-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 24px;
            padding: 25px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .knowledge-base-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 95, 21, 0.3);
        }

        /* Header Stats */
        .kb-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 95, 21, 0.15);
        }

        .kb-stat {
            text-align: center;
        }

        .stat-number {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 18px;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Search Mockup */
        .kb-search-mockup {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 50px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .kb-search-mockup:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 95, 21, 0.3);
            transform: translateX(5px);
        }

        .kb-search-mockup i {
            color: var(--primary-orange);
            font-size: 18px;
        }

        .kb-search-mockup span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            font-weight: 500;
        }

        /* Category Grid */
        .kb-categories {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }

        .kb-category-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 95, 21, 0.15);
            border-radius: 16px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .kb-category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .kb-category-item:hover::before {
            transform: scaleY(1);
        }

        .kb-category-item:hover {
            background: rgba(255, 95, 21, 0.08);
            border-color: rgba(255, 95, 21, 0.3);
            transform: translateX(5px);
        }

        .category-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.15), rgba(255, 168, 2, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .kb-category-item:hover .category-icon-wrapper {
            background: var(--gradient-primary);
            transform: scale(1.1);
        }

        .category-icon-wrapper i {
            font-size: 22px;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .kb-category-item:hover .category-icon-wrapper i {
            color: white;
        }

        .category-info h4 {
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin: 0 0 4px 0;
            line-height: 1.2;
        }

        .category-info span {
            font-size: 18px;
            color: white;
            font-weight: 500;
        }

        /* Footer Quick Actions */
        .kb-footer {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 95, 21, 0.15);
        }

        .quick-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 95, 21, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .quick-action:hover {
            background: rgba(255, 95, 21, 0.08);
            border-color: rgba(255, 95, 21, 0.3);
            transform: translateY(-3px);
        }

        .quick-action i {
            font-size: 20px;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .quick-action:hover i {
            transform: scale(1.1);
        }

        .quick-action span {
            font-size: 19px;
            color: white;
            font-weight: 600;
            text-align: center;
        }

        /* Floating Accent Elements */
        .accent-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
            border: 3px solid rgba(255, 255, 255, 0.1);
            z-index: 1;
        }

        .accent-element i {
            font-size: 26px;
            color: white;
        }

        .accent-1 {
            top: -15px;
            right: -15px;
            animation: floatAccent1 4s ease-in-out infinite;
        }

        .accent-2 {
            bottom: -15px;
            left: -15px;
            animation: floatAccent2 5s ease-in-out infinite;
        }

        .accent-3 {
            top: 50%;
            right: -25px;
            transform: translateY(-50%);
            animation: floatAccent3 4.5s ease-in-out infinite;
            display: none;

        }

        @keyframes floatAccent1 {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(-10px, -10px) rotate(180deg);
            }
        }

        @keyframes floatAccent2 {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(10px, 10px) rotate(-180deg);
            }
        }

        @keyframes floatAccent3 {

            0%,
            100% {
                transform: translate(0, -50%) rotate(0deg);
            }

            50% {
                transform: translate(-15px, -50%) rotate(180deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .knowledge-base-card {
                padding: 30px;
            }

            .kb-categories {
                gap: 12px;
            }

            .kb-category-item {
                padding: 16px;
            }

            .category-icon-wrapper {
                width: 45px;
                height: 45px;
            }

            .category-icon-wrapper i {
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
            .faq-visual-professional {
                max-width: 500px;
            }
        }

        @media (max-width: 768px) {
            .faq-visual-professional {
                max-width: 450px;
            }

            .knowledge-base-card {
                padding: 25px;
            }

            .kb-header {
                gap: 15px;
                margin-bottom: 25px;
            }

            .stat-number {
                font-size: 24px;
            }

            .stat-label {
                font-size: 11px;
            }

            .kb-search-mockup {
                padding: 14px 20px;
            }

            .kb-search-mockup i {
                font-size: 16px;
            }

            .kb-search-mockup span {
                font-size: 14px;
            }

            .kb-categories {
                gap: 10px;
            }

            .kb-category-item {
                padding: 14px;
            }

            .category-icon-wrapper {
                width: 42px;
                height: 42px;
            }

            .category-icon-wrapper i {
                font-size: 18px;
            }

            .category-info h4 {
                font-size: 13px;
            }

            .category-info span {
                font-size: 11px;
            }

            .kb-footer {
                gap: 10px;
            }

            .quick-action {
                padding: 10px;
            }

            .quick-action i {
                font-size: 18px;
            }

            .quick-action span {
                font-size: 10px;
            }

            .accent-element {
                width: 50px;
                height: 50px;
            }

            .accent-element i {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .faq-visual-professional {
                max-width: 100%;
                padding: 0 15px;
            }

            .knowledge-base-card {
                padding: 20px;
            }

            .kb-header {
                gap: 12px;
                margin-bottom: 20px;
            }

            .stat-number {
                font-size: 22px;
            }

            .stat-label {
                font-size: 10px;
            }

            .kb-search-mockup {
                padding: 12px 18px;
                margin-bottom: 20px;
            }

            .kb-categories {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .kb-category-item {
                padding: 12px;
            }

            .category-icon-wrapper {
                width: 40px;
                height: 40px;
            }

            .category-icon-wrapper i {
                font-size: 16px;
            }

            .category-info h4 {
                font-size: 12px;
            }

            .kb-footer {
                gap: 8px;
            }

            .quick-action {
                padding: 8px;
            }

            .accent-1 {
                top: -10px;
                right: -10px;
            }

            .accent-2 {
                bottom: -10px;
                left: -10px;
            }

            .accent-3 {
                right: -15px;
            }

            .accent-element {
                width: 45px;
                height: 45px;
            }

            .accent-element i {
                font-size: 20px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .faq-visual-container {
                max-width: 500px;
                height: 480px;
            }

            .faq-hub-card {
                max-width: 380px;
                height: 380px;
            }

            .center-stats {
                width: 180px;
                height: 180px;
            }

            .bubble {
                padding: 10px 16px;
                font-size: 13px;
            }

            .info-card {
                padding: 10px 14px;
            }

            .info-card strong {
                font-size: 16px;
            }
        }

        @media (max-width: 1024px) {
            .hero-section .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-section .hero-text {
                text-align: center;
                order: 2;
                margin-top: 1rem;
                max-width: 100%;
                justify-self: center;
            }

            .hero-section .hero-visual {
                order: 1;
                max-height: none;
                justify-self: center;
            }

            .hero-section .hero-actions {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 40px;
                min-height: auto;
            }

            .hero-section .container {
                padding: 0 20px;
            }

            .hero-section .hero-grid {
                gap: 30px;
                min-height: auto;
            }

            .hero-section .hero-text {
                margin-top: 0.5rem;
            }

            .hero-section .hero-badge {
                padding: 10px 20px !important;
                font-size: 12px !important;
            }

            .faq-visual-container {
                max-width: 400px;
                height: 420px;
            }

            .faq-hub-card {
                max-width: 320px;
                height: 320px;
            }

            .center-stats {
                width: 150px;
                height: 150px;
            }

            .stat-content i {
                font-size: 32px;
            }

            .stat-content h3 {
                font-size: 28px;
            }

            .bubble {
                padding: 8px 12px;
                font-size: 12px;
            }

            .bubble i {
                font-size: 16px;
            }

            .info-card {
                padding: 8px 12px;
            }

            .info-card i {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .info-card strong {
                font-size: 14px;
            }

            .orbit-icons {
                width: 420px;
                height: 420px;
            }

            .orbit-icon {
                width: 40px;
                height: 40px;
            }

            .orbit-icon i {
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 70px 0 30px;
            }

            .hero-section .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-section .hero-btn-primary,
            .hero-section .hero-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .faq-visual-container {
                max-width: 100%;
                height: 400px;
                padding: 0 20px;
            }

            .faq-hub-card {
                max-width: 280px;
                height: 280px;
            }

            .center-stats {
                width: 130px;
                height: 130px;
            }

            .stat-content i {
                font-size: 28px;
            }

            .stat-content h3 {
                font-size: 24px;
            }

            .stat-content p {
                font-size: 12px;
            }

            .bubble {
                padding: 6px 10px;
                font-size: 11px;
            }

            .info-card {
                padding: 6px 10px;
            }

            .info-card i {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .info-card strong {
                font-size: 13px;
            }

            .info-card span {
                font-size: 10px;
            }

            .card-top-left,
            .card-bottom-left {
                left: -8%;
            }

            .card-top-right,
            .card-bottom-right {
                right: -8%;
            }

            .orbit-icons {
                width: 380px;
                height: 380px;
            }

            .orbit-icon {
                width: 35px;
                height: 35px;
            }

            .orbit-icon i {
                font-size: 16px;
            }
        }

        /* Search Bar */
        .search-container {
            max-width: 600px;
            /* margin: 0 auto 3rem; */
            /*margin: auto;*/
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem 3rem 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.3);
            border-radius: 50px;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-orange);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 30px rgba(255, 95, 21, 0.2);
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .search-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 40px 100px;
            position: relative;
        }

        /* Enhanced Sidebar */
        .faq-sidebar {
            position: sticky;
            top: 140px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid rgba(255, 95, 21, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .faq-sidebar:hover {
            border-color: rgba(255, 95, 21, 0.4);
            box-shadow: 0 12px 40px rgba(255, 95, 21, 0.15);
        }

        .sidebar-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sidebar-title i {
            color: var(--primary-orange);
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            font-size: 22px;
        }

        .category-list li {
            margin-bottom: 0.5rem;
        }

        .category-list a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .category-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-orange), var(--secondary-orange));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .category-list a i {
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .category-list a:hover {
            color: var(--primary-orange);
            background: rgba(255, 95, 21, 0.08);
            transform: translateX(5px);
        }

        .category-list a:hover i {
            transform: scale(1.2);
        }

        .category-list a:hover::before {
            transform: scaleY(1);
        }

        .category-list a.active {
            color: #ffffff;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.2), rgba(255, 168, 2, 0.15));
            border-left: 3px solid var(--primary-orange);
        }

        /* Contact Box */
        .contact-box {
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.08), rgba(255, 168, 2, 0.05));
            border-radius: 20px;
            padding: 1.8rem;
            border: 1px solid rgba(255, 95, 21, 0.25);
            position: relative;
            overflow: hidden;
            font-size: 22px;
        }

        .contact-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 95, 21, 0.15), transparent);
            border-radius: 50%;
        }

        .contact-box h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary-orange);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contactitem2 {
            margin-bottom: 1.2rem;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contactitem2:hover {
            background: rgba(255, 95, 21, 0.08);
            transform: translateX(5px);
        }

        .contact-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 0.5rem;
        }

        .contact-header i {
            color: var(--primary-orange);
            font-size: 1.1rem;
        }

        .contact-header h4 {
            font-size: 22px;
            font-weight: 600;
            margin: 0;
        }

        .contactitem2 p {
            margin: 0;
            padding-left: 2rem;
        }

        .contactitem2 a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            word-break: break-all;
        }

        .contactitem2 a:hover {
            color: var(--primary-orange);
        }

        /* FAQ Content */
        .faq-content {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 95, 21, 0.15);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .faq-category {
            margin-bottom: 4rem;
            scroll-margin-top: 120px;
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 95, 21, 0.2);
        }

        .category-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.2), rgba(255, 168, 2, 0.15));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-orange);
        }

        .category-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin: 0;
            color: #ffffff;
        }

        .category-title span {
            background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Enhanced Accordion */
        .accordion-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 95, 21, 0.15);
            border-radius: 16px !important;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: rgba(255, 95, 21, 0.3);
            box-shadow: 0 4px 20px rgba(255, 95, 21, 0.1);
            transform: translateY(-2px);
        }

        .accordion-button {
            background: transparent;
            color: #ffffff;
            font-weight: 600;
            font-size: 22px;
            padding: 1.3rem 1.5rem;
            border: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-button::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-orange), var(--secondary-orange));
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.12), rgba(255, 168, 2, 0.08));
            color: var(--secondary-orange);
            box-shadow: none;
        }

        .accordion-button:not(.collapsed)::before {
            transform: scaleY(1);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF5F15'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform 0.3s ease;
        }

        .accordion-button:not(.collapsed)::after {
            transform: rotate(-180deg);
        }

        .accordion-button:hover {
            background: rgba(255, 95, 21, 0.06);
        }

        .accordion-body {
            background: rgba(0, 0, 0, 0.15);
            color: rgba(255, 255, 255, 0.85);
            padding: 1.5rem;
            line-height: 1.8;
            border-top: 1px solid rgba(255, 95, 21, 0.1);
            font-size: 22px;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .faq-sidebar {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }
        }

        /* Mobile Responsive Fixes */

        /* Hero Section Mobile */
        @media (max-width: 768px) {
            .hero-section {
                margin-top: 7rem !important;
                padding: 30px 15px !important;
            }

            .hero-section h1 {
                font-size: 2rem !important;
                margin-bottom: 1rem !important;
            }

            .hero-section p {
                font-size: 1rem !important;
                padding: 0 10px !important;
            }

            .search-container {
                padding: 0 15px !important;
                margin-bottom: 2rem !important;
            }

            .search-input {
                padding: 0.8rem 2.5rem 0.8rem 1rem !important;
                font-size: 0.9rem !important;
            }

            .search-icon {
                right: 1rem !important;
                font-size: 1rem !important;
            }
        }




        /* Morphing Copyright Mobile Responsive Fix */
        @media (max-width: 768px) {
            .morphing-copyright {
                padding: 15px 10px !important;
                font-size: 0.85rem !important;
            }

            .copyright-content {
                flex-direction: column !important;
                gap: 8px !important;
                text-align: center !important;
            }

            .copyright-content span {
                font-size: 0.85rem !important;
                line-height: 1.5 !important;
            }

            .flag-icon {
                width: 28px !important;
                height: 28px !important;
                margin-top: 5px !important;
            }
        }

        @media (max-width: 480px) {
            .morphing-copyright {
                padding: 12px 8px !important;
                font-size: 0.75rem !important;
            }

            .copyright-content span {
                font-size: 0.75rem !important;
                padding: 0 5px !important;
            }

            .flag-icon {
                width: 24px !important;
                height: 24px !important;
            }
        }

        /* FAQ Section Mobile */
        @media (max-width: 768px) {
            .faq-section {
                padding: 20px 15px !important;
            }

            .faq-sidebar {
                margin-bottom: 2rem !important;
                padding: 1.5rem !important;
                top: 0 !important;
                position: relative !important;
            }

            .sidebar-title {
                font-size: 1.3rem !important;
            }

            .category-list a {
                padding: 0.6rem 0.8rem !important;
                font-size: 0.9rem !important;
            }

            .contact-box {
                padding: 1.5rem !important;
            }

            .contact-box h3 {
                font-size: 1.1rem !important;
            }

            .contactitem2 {
                padding: 0.6rem !important;
                font-size: 0.85rem !important;
            }

            .faq-content {
                padding: 1.5rem !important;
                border-radius: 16px !important;
            }

            .category-header {
                flex-direction: row !important;
                align-items: center !important;
                gap: 0.8rem !important;
            }

            .category-icon {
                width: 40px !important;
                height: 40px !important;
                font-size: 1.2rem !important;
            }

            .category-title {
                font-size: 1.5rem !important;
            }

            .accordion-button {
                font-size: 0.9rem !important;
                padding: 1rem !important;
            }

            .accordion-body {
                padding: 1rem !important;
                font-size: 0.9rem !important;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 480px) {
            .hero-section {
                margin-top: 6rem !important;
                padding: 20px 10px !important;
            }

            .hero-section h1 {
                font-size: 1.8rem !important;
            }

            .search-container {
                padding: 0 10px !important;
            }

            .faq-section {
                padding: 15px 10px !important;
            }

            .faq-content {
                padding: 1rem !important;
            }

            .category-title {
                font-size: 1.3rem !important;
            }

            .accordion-button {
                font-size: 0.85rem !important;
                padding: 0.8rem !important;
            }
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }


        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 95, 21, 0.2);
            border-top-color: var(--primary-orange);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
