
        /* Header Styles */
        .header-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(228, 231, 235, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        /* Logo Section */
        .header-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: inherit;
        }

        .header-logo {
            
            height: 33px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
            
            transition: transform 0.2s ease;
        }

        .header-logo:hover {
            transform: scale(1.05);
        }

        .header-title {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: #1a202c;
            letter-spacing: -0.5px;
        }

        /* Desktop Navigation */
        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .header-nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .header-link {
            position: relative;
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .header-link:hover {
            color: #667eea;
        }

        .header-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 1px;
            transition: width 0.3s ease;
        }

        .header-link:hover::after {
            width: 100%;
        }

        /* CTA Button */
        .header-cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .header-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }

        /* Mobile Menu Toggle */
        .header-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 32px;
            height: 32px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .header-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: #4a5568;
            border-radius: 1px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .header-menu-toggle span:nth-child(1) {
            margin-bottom: 5px;
        }

        .header-menu-toggle span:nth-child(3) {
            margin-top: 5px;
        }

        .header-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .header-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .header-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation */
        .header-mobile-nav {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(228, 231, 235, 0.3);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
        }

        .header-mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .header-mobile-nav-content {
            padding: 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .header-mobile-nav-links {
            list-style: none;
            margin-bottom: 24px;
        }

        .header-mobile-nav-links li {
            margin-bottom: 16px;
        }

        .header-mobile-nav-links .header-link {
            display: block;
            padding: 12px 0;
            font-size: 16px;
            border-bottom: 1px solid rgba(228, 231, 235, 0.3);
        }

        .header-mobile-nav-links .header-link:last-child {
            border-bottom: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-inner {
                padding: 0 16px;
                height: 64px;
            }

            .header-title {
                font-size: 20px;
            }

            .header-logo {
                width: 43px;
                font-size: 18px;
            }

            .header-nav-links,
            .header-cta-button {
                display: none;
            }

            .header-menu-toggle {
                display: flex;
            }

            .header-container {
                position: fixed;
            }

            .header-mobile-nav {
                top: 64px;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 0 12px;
            }

            .header-brand {
                gap: 8px;
                border-radius: 0;
                box-shadow: none;
                width: 40px;
                border-radius: 0;
                height: fit-content;
            }

            .header-title {
                font-size: 18px;
            }

            .header-logo {
                width: 40px;
                font-size: 16px;
            }
        }

        /* Body spacing to account for fixed header */
        body {
            padding-top: 72px;
        }

        @media (max-width: 768px) {
            body {
                padding-top: 64px;
            }
            .header-brand{
                border:  none;
                box-shadow: none;
                width: 48px;
                border-radius: none;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }