   /* Force light theme in this theme regardless of device dark mode */
        :root {
            color-scheme: light;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                color-scheme: light;
            }

            html,
            body {
                background-color: #f8f9fc !important;
                color: #1f2937 !important;
            }

            input,
            select,
            textarea,
            button {
                background-color: #ffffff !important;
                color: #1f2937 !important;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f8f9fc;
            overflow-x: hidden;
        }

        .glassmorphism {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

        .swiper {
            width: 100%;
            height: 400px;
            margin-bottom: 2rem;
        }

        .swiper-slide {
            text-align: center;
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-slide img {
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sidebar Styles */
        .sidebar {
            min-width: 340px;
            max-width: 340px;
        }

        @media (max-width: 1280px) {
            .sidebar {
                min-width: 320px;
                max-width: 320px;
            }
        }

        @media (max-width: 1024px) {
            .sidebar {
                min-width: 280px;
                max-width: 280px;
            }
        }

        .submenu {
            display: none;
        }

        .submenu.active {
            display: block;
        }

        .submenu-item {
            padding-left: 3.5rem;
        }

        .nav-item.has-submenu {
            position: relative;
        }

        /* Main content container */
        .main-container {
            max-width: calc(100% - 340px);
            width: 100%;
        }

        [dir="ltr"] .main-container {
            margin-left: 340px;
            margin-right: 0;
        }

        [dir="rtl"] .main-container {
            margin-right: 340px;
            margin-left: 0;
        }

        @media (max-width: 1280px) {
            .main-container {
                max-width: calc(100% - 320px);
            }

            [dir="ltr"] .main-container {
                margin-left: 320px;
                margin-right: 0;
            }

            [dir="rtl"] .main-container {
                margin-right: 320px;
                margin-left: 0;
            }
        }

        @media (max-width: 1024px) {
            .main-container {
                max-width: calc(100% - 280px);
            }

            [dir="ltr"] .main-container {
                margin-left: 280px;
                margin-right: 0;
            }

            [dir="rtl"] .main-container {
                margin-right: 280px;
                margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            .main-container {
                max-width: 100%;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .sidebar {
                position: fixed;
                z-index: 50;
                width: 85vw;
                height: 100vh;
                top: 0;
                transform: translateX(-100%);
                transition: transform 0.3s ease-in-out;
            }

            [dir="rtl"] .sidebar {
                transform: translateX(100%);
            }

            .sidebar.show {
                transform: translateX(0);
            }
        }

        /* Mobile overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 40;
            display: none;
        }

        .mobile-overlay.show {
            display: block;
        }

        /* Mobile specific tweaks */
        @media (max-width: 768px) {
            .swiper {
                height: 240px;
                margin-bottom: 1rem;
            }
        }
