         :root {
            --primary: #1A73E8;
            --primary-light: #5AA8FF;
            --primary-dark: #155AB6;
            --secondary: #F5A623;
            --secondary-light: #FFC55C;
            --secondary-dark: #B37817;
            --accent: #34A853;
            --accent-light: #72D68C;
            --accent-dark: #257836;
            --background: #FFFFFF;
            --text: #202124;
            --text-secondary: #5F6368;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--background);
            font-size: 16px;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 24px;
            color: var(--primary) !important;
        }
        
        .navbar-default {
            background: var(--background);
            border: none;
            box-shadow: 0 2px 10px rgba(26, 115, 232, 0.1);
            padding: 10px 0;
        }
        
        .navbar-default .navbar-nav > li > a {
            color: var(--text);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-default .navbar-nav > li > a:hover {
            color: var(--primary);
            background: transparent;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/tech-innovation-background-1280x720.jpeg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-primary-custom {
            background: var(--secondary);
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary-custom:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: bold;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(26, 115, 232, 0.2);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .feature-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--text);
        }
        
        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .stats-section {
            background: var(--primary);
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-quote {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
            color: var(--text-secondary);
        }
        
        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        .testimonial-role {
            font-size: 14px;
            color: var(--text-secondary);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-info {
            background: #f8f9fa;
            padding: 40px 0;
        }
        
        .contact-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 24px;
        }
        
        .contact-label {
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--text);
        }
        
        .contact-value {
            color: var(--text-secondary);
        }
        
        .footer {
            background: var(--text);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-section h4 {
            margin-bottom: 20px;
            color: var(--primary-light);
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: var(--primary-light);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            color: #ccc;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--text);
            color: white;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .btn-cookie-accept {
            background: var(--accent);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            color: white;
            font-weight: bold;
        }
        
        .btn-cookie-decline {
            background: transparent;
            border: 1px solid #ccc;
            padding: 10px 20px;
            border-radius: 5px;
            color: white;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .feature-card {
                margin-bottom: 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        .navbar-toggle {
            border-color: var(--primary);
        }
        
        .navbar-toggle .icon-bar {
            background-color: var(--primary);
        }
        
        @media (max-width: 767px) {
            .navbar-collapse {
                border-top: 1px solid #e7e7e7;
                box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
            }
        }
    