
        :root {
            --primary-color: #080561;
            --secondary-color: #a757b4f5;
            --accent-color: #f5f5f5;
            --white: #ffffff;
            --button-hover: #8e44ad;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html, body {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: var(--accent-color);
            padding-top: 70px;
            padding-bottom: 0;
            position: relative;
            min-height: 100vh;
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 80px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--button-hover);
            transform: translateY(-3px);
        }

        /* Fixed Header */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background-color: var(--primary-color);
            color: white;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 100vw;
        }

        .scrolled {
            padding: 8px 5%;
        }

        .left-section {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 0;
        }

        .menu-btn {
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 5px;
            display: none;
            width: 30px;
            height: 30px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-btn.active {
            font-size: 26px;
        }

        .logo {
            font-size: 22px;
            font-weight: bold;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 150px;
            transition: none;
            flex-shrink: 1;
            color: white;
            text-decoration: none;
        }

        .logo:hover {
            color: white;
        }

        .explore-btn {
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 15px;
        }

        .explore-btn:hover {
            background-color: var(--button-hover);
        }

        .home-icon {
            font-size: 18px;
        }

        /* Desktop Menu */
        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: center;
            margin: 0 15px;
        }

        .menu-item {
            padding: 10px 12px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: white;
            text-decoration: none;
            white-space: nowrap;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: -100%;
            width: 280px;
            height: calc(100vh - 70px);
            background-color: white;
            z-index: 999;
            transition: all 0.4s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            overflow-y: auto;
            padding-top: 20px;
            display: none;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-item {
            padding: 15px 25px;
            border-bottom: 1px solid #eee;
            color: var(--primary-color);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .mobile-menu-item:hover {
            background-color: #f9f9f9;
        }

        .overlay {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: none;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Bottom Navigation - Mobile Only */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            display: none;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
            z-index: 1000;
            width: 100%;
            max-width: 100vw;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            padding: 5px 8px;
            border-radius: 8px;
        }

        .nav-item i {
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .nav-item.active {
            color: var(--secondary-color);
            background-color: rgba(167, 87, 180, 0.1);
            transform: translateY(-3px);
        }

        .nav-item:not(.active):hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }
   
        /* Footer Styles */
        .site-footer {
            background-color: #1a1a1a;
            color: #f0f0f0;
            padding: 1.5rem 1rem;
            font-family: 'Segoe UI', Roboto, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        /* Top Line - Links */
        .footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-links a {
            color: #f0f0f0;
            text-decoration: none;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: color 0.2s ease;
            padding: 0 0.5rem;
        }

        .footer-links a:hover {
            color: #a757b4;
        }

        .footer-separator {
            color: rgba(240, 240, 240, 0.5);
            font-size: 0.9rem;
        }
        
        /* Middle Line - Social Icons */
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 0.5rem 0;
        }

        .footer-social a {
            font-size: 1.2rem;
            transition: transform 0.2s ease;
            color: #f0f0f0;
            text-decoration: none;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
        }

       /* Social Icon Colors - Original Brand Colors */
.fa-linkedin { color: #0077b5; }
.fa-youtube { color: #ff0000; }
.fa-telegram { color: #0088cc; }
.fa-whatsapp { color: #25D366; }

.fa-instagram {
  background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, 
    #fdf497 5%, 
    #fd5949 45%, 
    #d6249f 60%, 
    #285AEB 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback for older browsers */
}


        /* Bottom Line - Credits */
        .footer-credits {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.8rem;
            color: #aaa;
        }

        .footer-copyright {
            text-align: center;
            font-size: 0.8rem;
        }

        .footer-brand {
            font-style: italic;
            font-size: 0.8rem;
        }

        .footer-brand a {
            color: #a757b4;
            font-weight: 500;
            text-decoration: none;
        }

        .footer-brand a:hover {
            text-decoration: none;
        }

        /* Desktop Layout */
        @media (min-width: 768px) {
            .footer-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 0;
            }

            .footer-links {
                justify-content: flex-start;
                gap: 0;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-credits {
                align-items: flex-end;
            }

            .footer-links a {
                font-size: 1.1rem;
            }

            .footer-separator {
                font-size: 1.1rem;
            }

            .footer-social a {
                font-size: 1.5rem;
            }

            .footer-copyright {
                font-size: 1rem;
            }

            .footer-brand {
                font-size: 1.1rem;
            }
        }

        /* Responsive adjustments */
        @media (min-width: 993px) {
            .menu-btn,
            .mobile-menu,
            .overlay,
            .bottom-nav {
                display: none !important;
            }
            
            .desktop-menu {
                display: flex;
            }
        }

        @media (max-width: 992px) {
            .desktop-menu {
                display: none;
            }
            
            .menu-btn {
                display: flex;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .overlay {
                display: block;
            }
            
            .bottom-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 60px;
                padding-bottom: 60px;
                overflow-x: hidden;
            }
            
            .bottom-nav {
                display: flex;
            }
            
            .top-bar {
                padding: 10px 3%;
                height: 60px;
            }
            
            .mobile-menu {
                top: 60px;
                height: calc(100vh - 120px);
            }
            
            .overlay {
                top: 60px;
            }
            
            .logo {
                font-size: 20px;
                max-width: 120px;
            }
            
            .explore-btn {
                padding: 8px 15px;
                font-size: 14px;
            }

            .scroll-to-top {
                bottom: 70px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        /* Content Styles */
        main {
            min-height: calc(100vh - 140px);
            padding: 20px 5%;
            max-width: 1200px;
            margin: 0 auto;
            line-height: 1.6;
            color: #333;
        }

        h1 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }

        h2 {
            color: var(--primary-color);
            margin: 25px 0 15px;
            font-size: 1.5rem;
            border-left: 4px solid var(--secondary-color);
            padding-left: 10px;
        }

        h3 {
            color: var(--primary-color);
            margin: 20px 0 10px;
            font-size: 1.2rem;
        }

        p {
            margin-bottom: 15px;
        }

        strong {
            color: var(--primary-color);
        }

        ul, ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        th, td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #ddd;
        }

        th {
            background-color: var(--primary-color);
            color: white;
        }

        tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        tr:hover {
            background-color: #f1f1f1;
        }

        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        a:hover {
            color: var(--button-hover);
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            h3 {
                font-size: 1.1rem;
            }
            
            th, td {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
        }