
        :root {
            --gseo-primary: #0c4a6e; /* Dark Blue */
            --gseo-primary-dark: #075985; /* Darker Blue */
            --gseo-secondary: #064e3b; /* Dark Green */
            --gseo-secondary-dark: #064e3b; /* Darker Green */
            --gseo-dark: #1e293b;
            --gseo-light: #f8fafc;
            --gseo-gray: #64748b;
            --gseo-border: #e2e8f0;
            --gseo-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --gseo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --gseo-gradient: linear-gradient(135deg, var(--gseo-primary) 0%, var(--gseo-secondary) 100%);
            --gseo-navbar-bg: linear-gradient(135deg, rgba(12, 74, 110, 0.05) 0%, rgba(6, 78, 59, 0.05) 100%); /* Subtle colored background */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--gseo-dark);
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .gseo-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar Styles */
        .gseo-header {
            background: var(--gseo-navbar-bg); /* Colored gradient background */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--gseo-shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(12, 74, 110, 0.1); /* Subtle border */
        }
        
        .gseo-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0; /* Standard navbar height */
        }
        
        .gseo-logo {
            display: flex;
            align-items: center;
            font-size: 24px; /* Standard logo size */
            font-weight: 700;
            color: var(--gseo-primary);
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .gseo-logo:hover {
            transform: scale(1.05);
        }
        
        .gseo-logo i {
            margin-right: 10px; /* Standard margin */
            font-size: 28px; /* Standard icon size */
            animation: gseo-pulse 2s infinite;
        }
        
        @keyframes gseo-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .gseo-nav {
            display: flex;
            align-items: center;
        }
        
        .gseo-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .gseo-nav ul li {
            margin-left: 30px; /* Standard spacing */
        }
        
        .gseo-nav ul li a {
            text-decoration: none;
            color: var(--gseo-dark);
            font-weight: 500;
            font-size: 16px; /* Standard font size */
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
            padding: 5px 0;
        }
        
        .gseo-nav ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: var(--gseo-gradient);
            transition: width 0.3s ease;
        }
        
        .gseo-nav ul li a:hover {
            color: var(--gseo-primary);
        }
        
        .gseo-nav ul li a:hover::before {
            width: 100%;
        }
        
        /* Professional Login Button - Matching CTA style */
        .gseo-login-button {
            background: var(--gseo-gradient);
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 2px 4px rgba(12, 74, 110, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .gseo-login-button i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }
        
        .gseo-login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }
        
        .gseo-login-button:hover::before {
            left: 100%;
        }
        
        .gseo-login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }
        
        .gseo-login-button:hover i {
            transform: translateY(-3px);
        }
        
        .gseo-mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px; /* Standard toggle size */
            cursor: pointer;
            color: var(--gseo-dark);
            transition: transform 0.3s ease;
        }
        
        .gseo-mobile-menu-toggle:hover {
            transform: rotate(90deg);
        }
        
        /* Main Content Placeholder */
        .gseo-main {
            flex: 1;
            padding: 100px 0 50px; /* Standard top padding for navbar */
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
        }
        
        .gseo-content-placeholder {
            text-align: center;
            max-width: 800px;
            padding: 40px;
            background-color: white;
            border-radius: 20px;
            box-shadow: var(--gseo-shadow-lg);
            animation: gseo-fadeInUp 0.8s ease;
        }
        
        @keyframes gseo-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gseo-content-placeholder h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--gseo-dark);
            background: var(--gseo-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .gseo-content-placeholder p {
            font-size: 18px;
            color: var(--gseo-gray);
            margin-bottom: 30px;
        }
        
        .gseo-cta-button {
            background: var(--gseo-gradient);
            color: #ffffff; /* Pure white for consistency */
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600; /* Increased font weight */
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Added text shadow */
        }
        
        .gseo-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }
        
        .gseo-cta-button:hover::before {
            left: 100%;
        }
        
        .gseo-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: #ffffff; /* Ensure text stays white on hover */
        }
        
        /* Footer Styles */
        .gseo-footer {
            background: var(--gseo-gradient);
            color: white;
            padding: 40px 0 15px; /* Reduced footer height */
            position: relative;
            overflow: hidden;
        }
        
        .gseo-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .gseo-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px; /* Reduced gap */
            margin-bottom: 30px; /* Reduced margin */
            position: relative;
            z-index: 1;
        }
        
        .gseo-footer-column {
            animation: gseo-fadeIn 1s ease;
        }
        
        @keyframes gseo-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .gseo-footer-column h3 {
            font-size: 18px; /* Reduced font size */
            margin-bottom: 15px; /* Reduced margin */
            position: relative;
            padding-bottom: 8px; /* Reduced padding */
            display: inline-block;
        }
        
        .gseo-footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px; /* Reduced width */
            height: 2px;
            background-color: white;
            animation: gseo-slideIn 0.5s ease;
        }
        
        @keyframes gseo-slideIn {
            from { width: 0; }
            to { width: 40px; } /* Reduced width */
        }
        
        .gseo-footer-column p {
            margin-bottom: 15px; /* Reduced margin */
            opacity: 0.9;
            font-size: 14px; /* Reduced font size */
            line-height: 1.5; /* Reduced line height */
        }
        
        .gseo-footer-links {
            list-style: none;
        }
        
        .gseo-footer-links li {
            margin-bottom: 8px; /* Reduced margin */
            transform: translateX(-20px);
            opacity: 0;
            animation: gseo-slideInLeft 0.5s ease forwards;
        }
        
        .gseo-footer-links li:nth-child(1) { animation-delay: 0.1s; }
        .gseo-footer-links li:nth-child(2) { animation-delay: 0.2s; }
        .gseo-footer-links li:nth-child(3) { animation-delay: 0.3s; }
        .gseo-footer-links li:nth-child(4) { animation-delay: 0.4s; }
        .gseo-footer-links li:nth-child(5) { animation-delay: 0.5s; }
        
        @keyframes gseo-slideInLeft {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .gseo-footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            font-size: 13px; /* Reduced font size */
        }
        
        .gseo-footer-links a::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gseo-footer-links a:hover {
            opacity: 1;
            transform: translateX(5px);
        }
        
        .gseo-footer-links a:hover::before {
            opacity: 1;
            left: -20px;
        }
        
        .gseo-social-links {
            display: flex;
            gap: 12px; /* Reduced gap */
            margin-top: 15px; /* Reduced margin */
        }
        
        .gseo-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px; /* Reduced size */
            height: 36px; /* Reduced size */
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .gseo-social-links a::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }
        
        .gseo-social-links a:hover::before {
            width: 100%;
            height: 100%;
        }
        
        .gseo-social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .gseo-footer-bottom {
            text-align: center;
            padding-top: 15px; /* Reduced padding */
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 12px; /* Reduced font size */
            opacity: 0.8;
            position: relative;
            z-index: 1;
        }
        
        /* Scroll to top button */
        .gseo-scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gseo-gradient);
            color: #ffffff; /* Pure white */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: var(--gseo-shadow-lg);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Added text shadow */
        }
        
        .gseo-scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .gseo-scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .gseo-scroll-top i {
            font-size: 20px;
            transition: transform 0.3s ease;
        }
        
        .gseo-scroll-top:hover i {
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .gseo-content-placeholder h1 {
                font-size: 32px;
            }
            
            .gseo-content-placeholder p {
                font-size: 16px;
            }
        }
        
        /* iPad Specific Styles */
        @media (min-width: 768px) and (max-width: 992px) {
            .gseo-header-container {
                padding: 12px 0; /* Slightly reduced for iPad */
            }
            
            .gseo-logo {
                font-size: 22px; /* Slightly reduced for iPad */
            }
            
            .gseo-logo i {
                font-size: 26px; /* Slightly reduced for iPad */
            }
            
            .gseo-nav ul li {
                margin-left: 20px; /* Slightly reduced for iPad */
            }
            
            .gseo-nav ul li a {
                font-size: 15px; /* Slightly reduced for iPad */
            }
            
            .gseo-login-button {
                padding: 8px 18px; /* Slightly reduced for iPad */
                font-size: 14px; /* Slightly reduced for iPad */
            }
        }
        
        @media (max-width: 768px) {
            .gseo-header-container {
                padding: 12px 0; /* Slightly reduced for mobile */
                justify-content: space-between;
            }
            
            .gseo-logo {
                font-size: 22px; /* Slightly reduced for mobile */
                flex: 1;
            }
            
            .gseo-logo i {
                font-size: 26px; /* Slightly reduced for mobile */
            }
            
            .gseo-nav {
                display: flex;
                align-items: center;
                flex: 2;
                justify-content: center;
            }
            
            .gseo-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 15px; /* Reduced padding */
                box-shadow: var(--gseo-shadow-lg);
                border-radius: 0 0 10px 10px;
                transform: translateY(-20px);
                opacity: 0;
                transition: all 0.3s ease;
            }
            
            .gseo-nav ul.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
            }
            
            .gseo-nav ul li {
                margin: 10px 0;
                width: 100%;
                text-align: center;
                transform: translateX(-20px);
                opacity: 0;
                animation: gseo-slideInMenu 0.3s ease forwards;
            }
            
            .gseo-nav ul li:nth-child(1) { animation-delay: 0.1s; }
            .gseo-nav ul li:nth-child(2) { animation-delay: 0.2s; }
            .gseo-nav ul li:nth-child(3) { animation-delay: 0.3s; }
            .gseo-nav ul li:nth-child(4) { animation-delay: 0.4s; }
            .gseo-nav ul li:nth-child(5) { animation-delay: 0.5s; }
            
            @keyframes gseo-slideInMenu {
                to {
                    transform: translateX(0);
                    opacity: 1;
                }
            }
            
            .gseo-nav ul li a {
                display: block;
                padding: 12px;
                width: 100%;
                border-radius: 5px;
                transition: background-color 0.3s ease;
            }
            
            .gseo-nav ul li a:hover {
                background-color: rgba(12, 74, 110, 0.1);
            }
            
            .gseo-nav ul li a::before {
                display: none;
            }
            
            /* Login button always visible in mobile navbar */
            .gseo-login-button {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 8px 16px;
                font-size: 14px;
            }
            
            /* Mobile Menu Toggle */
            .gseo-mobile-menu-toggle {
                display: block;
                flex: 1;
                text-align: right;
            }
            
            .gseo-content-placeholder {
                padding: 30px 20px;
            }
            
            .gseo-content-placeholder h1 {
                font-size: 28px;
            }
            
            .gseo-content-placeholder p {
                font-size: 16px;
            }
            
            .gseo-footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px; /* Reduced gap */
            }
        }
        
        @media (max-width: 576px) {
            .gseo-header-container {
                padding: 10px 0; /* Slightly reduced for small mobile */
            }
            
            .gseo-logo {
                font-size: 20px; /* Slightly reduced for small mobile */
            }
            
            .gseo-logo i {
                font-size: 24px; /* Slightly reduced for small mobile */
            }
            
            .gseo-nav {
                flex: 1;
            }
            
            .gseo-mobile-menu-toggle {
                flex: 1;
            }
            
            .gseo-nav ul {
                top: 100%;
            }
            
            .gseo-login-button {
                padding: 6px 14px;
                font-size: 13px;
            }
            
            .gseo-content-placeholder {
                padding: 20px 15px;
            }
            
            .gseo-content-placeholder h1 {
                font-size: 24px;
            }
            
            .gseo-content-placeholder p {
                font-size: 14px;
            }
            
            .gseo-cta-button {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .gseo-footer {
                padding: 30px 0 12px; /* Further reduced for small mobile */
            }
            
            .gseo-footer-content {
                grid-template-columns: 1fr;
                gap: 20px; /* Reduced gap */
            }
            
            .gseo-footer-column h3 {
                font-size: 16px; /* Reduced font size */
                margin-bottom: 12px; /* Reduced margin */
            }
            
            .gseo-footer-column h3::after {
                width: 30px; /* Reduced width */
            }
            
            .gseo-social-links a {
                width: 32px; /* Reduced size */
                height: 32px; /* Reduced size */
            }
            
            .gseo-scroll-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }
            
            .gseo-scroll-top i {
                font-size: 16px;
            }
        }
    