
        :root {
            --primary: #1A3E72;
            --primaryLight: #4A6BAF;
            --primaryDark: #122B51;
            --secondary: #F5A623;
            --secondaryLight: #FFBF54;
            --secondaryDark: #B77911;
            --accent: #00796B;
            --accentLight: #339E8C;
            --accentDark: #004D40;
            --background: #F9FAFB;
            --text: #212121;
            --textSecondary: #616161;
        }

        * {
            box-sizing: border-box;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primaryDark) 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/business-strategy-consulting-hero-1280x720.jpeg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .section-divider {
            height: 4px;
            background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
            border: none;
            margin: 0;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(26, 62, 114, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--accent);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(26, 62, 114, 0.15);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--secondary), var(--secondaryLight));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--primaryLight));
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: linear-gradient(135deg, var(--primaryDark), var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 62, 114, 0.3);
            color: white;
            text-decoration: none;
        }

        .btn-secondary-custom {
            background: linear-gradient(135deg, var(--secondary), var(--secondaryLight));
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: linear-gradient(135deg, var(--secondaryDark), var(--secondary));
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
            color: white;
            text-decoration: none;
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            border-top: 4px solid var(--accent);
        }

        .testimonial-stars {
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .contact-info {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            margin-bottom: 2rem;
        }

        .navbar-custom {
            background: rgba(26, 62, 114, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .navbar-custom.scrolled {
            background: var(--primary);
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            border-radius: 2px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            color: white;
            padding: 1rem;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 80vh;
                text-align: center;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.75rem;
            }
        }

        .stats-section {
            background: var(--primary);
            color: white;
            padding: 4rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }

        .process-step {
            text-align: center;
            padding: 2rem 1rem;
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent), var(--accentLight));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .team-member {
            text-align: center;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }

        .team-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            object-fit: cover;
        }
