        :root {
            --primary: #1E2A78;
            --primary-light: #4A5ACC;
            --primary-dark: #161F56;
            --secondary: #00A896;
            --secondary-light: #66CEC9;
            --secondary-dark: #007568;
            --accent: #F2A365;
            --accent-light: #F7C79D;
            --accent-dark: #BD7B48;
            --background: #F9FAFB;
            --text: #1A1A1A;
            --text-secondary: #555555;
        }

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

        .navbar-custom {
            background-color: var(--primary);
            border: none;
            border-radius: 0;
            margin-bottom: 0;
            box-shadow: 0 2px 10px rgba(30, 42, 120, 0.2);
        }

        .navbar-custom .navbar-brand,
        .navbar-custom .navbar-nav > li > a {
            color: white !important;
            font-weight: 500;
        }

        .navbar-custom .navbar-nav > li > a:hover {
            color: var(--accent-light) !important;
            background-color: transparent !important;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 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/hero-digital-transformation-1280x720.jpeg') center/cover;
            opacity: 0.1;
        }

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

        .hero-title {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-hero {
            background-color: var(--accent);
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 1.2em;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(242, 163, 101, 0.4);
        }

        .btn-hero:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(242, 163, 101, 0.6);
            color: white;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.2em;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0,0,0,0.15);
            border-color: var(--primary-light);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2em;
        }

        .service-title {
            font-size: 1.5em;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.7;
            text-align: center;
        }

        .stats-section {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: white;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 3em;
            font-weight: 700;
            display: block;
            color: var(--accent-light);
        }

        .stat-label {
            font-size: 1.1em;
            margin-top: 10px;
            opacity: 0.9;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            text-align: center;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 4px solid var(--accent-light);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-company {
            color: var(--text-secondary);
            font-size: 0.9em;
        }

        .contact-section {
            background-color: var(--primary);
            color: white;
            padding: 80px 0;
        }

        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 40px;
            color: var(--text);
        }

        .form-control {
            border-radius: 8px;
            border: 2px solid #e1e1e1;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(74, 90, 204, 0.1);
        }

        .btn-contact {
            background-color: var(--secondary);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            background-color: var(--secondary-dark);
            color: white;
        }

        .contact-info {
            color: white;
        }

        .contact-info h4 {
            color: var(--accent-light);
            margin-bottom: 20px;
        }

        .contact-item {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-item i {
            width: 30px;
            color: var(--accent);
            margin-right: 15px;
        }

        .footer-section {
            background-color: var(--primary-dark);
            color: white;
            padding: 50px 0 30px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin-bottom: 10px;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-light);
            text-decoration: none;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary);
            color: white;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .btn-cookie {
            background-color: var(--accent);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            margin-left: 15px;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5em;
            }
            
            .hero-subtitle {
                font-size: 1.1em;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .service-card {
                margin-bottom: 20px;
            }
            
            .contact-form {
                margin-top: 30px;
            }
        }

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