        :root {
            --color-primary: #F5A623;
            --color-primary-dark: #D98E1A;
            --color-secondary: #1A2332;
            --color-secondary-light: #2C3E50;
            --color-accent: #E67E22;
            --color-bg: #FFFFFF;
            --color-bg-alt: #F8F9FA;
            --color-text: #1A2332;
            --color-text-light: #5A6C7D;
            --color-border: #E1E8ED;
            --color-white: #FFFFFF;
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-serif: 'Source Serif 4', Georgia, serif;
            --spacing-unit: 8px;
            --max-width: 1280px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--color-text);
            background: var(--color-bg);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Navigation - Consistent with main site */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }

        .logo {
            width: 48px;
            height: 48px;
        }

        .logo-text {
            font-family: var(--font-primary);
            font-size: 1.35rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--color-secondary);
            letter-spacing: -0.01em;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.9375rem;
            color: var(--color-text);
            text-decoration: none;
            position: relative;
            transition: color 0.2s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--color-primary);
        }

        .cta-button {
            font-weight: 600;
            padding: 14px 28px;
            background: var(--color-primary);
            color: white;
            border: none;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9375rem;
            transition: all 0.2s;
        }

        .cta-button:hover {
            background: #D98E1A;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--color-secondary);
            transition: all 0.3s ease;
        }

        /* Blog Content */
        .blog-main {
            max-width: 1280px;
            margin: 120px auto 80px;
            padding: 0 32px;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .blog-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-secondary);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .blog-header p {
            font-family: var(--font-serif);
            font-size: 1.25rem;
            color: var(--color-text-light);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 32px;
        }

        .blog-card {
            background: white;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border-color: var(--color-primary);
        }

        .blog-card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: #F8F9FA;
        }

        .blog-card-content {
            padding: 24px;
        }

        .blog-meta {
            font-size: 0.875rem;
            color: var(--color-text-light);
            margin-bottom: 12px;
        }

        .blog-card h3 {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .blog-card p {
            font-family: var(--font-serif);
            color: var(--color-text-light);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .read-more {
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.9375rem;
        }

        /* Footer */
        footer {
            background: var(--color-secondary);
            color: var(--color-white);
            padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4);
        }
        
        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: calc(var(--spacing-unit) * 6);
            margin-bottom: calc(var(--spacing-unit) * 6);
        }
        
        .footer-brand h3 {
            font-family: var(--font-primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: calc(var(--spacing-unit) * 2);
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            font-size: 0.9375rem;
        }
        
        .footer-section h4 {
            font-family: var(--font-primary);
            font-weight: 700;
            margin-bottom: calc(var(--spacing-unit) * 2);
            color: var(--color-primary);
            font-size: 0.9375rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: calc(var(--spacing-unit) * 1.5);
        }
        
        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: color 0.2s ease;
            font-size: 0.9375rem;
        }
        
        .footer-section ul li a:hover {
            color: var(--color-primary);
        }
        
        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding-top: calc(var(--spacing-unit) * 4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

                /* Responsive */
        @media (max-width: 968px) {
            
            .blog-header h1 {
                font-size: 2.25rem;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }

            .nav-container {
                position: relative;
            }

            nav .cta-button {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
                z-index: 1001;
                padding: 4px;
            }

            .nav-links.active {
                display: flex;
                position: absolute;
                top: calc(100% + 8px);
                right: 0;
                left: 0;
                flex-direction: column;
                gap: 0;
                background: var(--color-white);
                border: 1px solid var(--color-border);
                border-radius: 8px;
                box-shadow: var(--shadow-md);
                padding: 8px 0;
            }

            .nav-links.active li {
                width: 100%;
            }

            .nav-links.active a {
                display: block;
                padding: 12px 16px;
            }

            .nav-links.active a::after {
                display: none;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.75rem;
            }
            
            .excellence-content {
                grid-template-columns: 1fr;
            }
            
            .excellence-list {
                grid-template-columns: 1fr;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 640px) {
            .hero-content h1 {
                font-size: 2.25rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }