
        :root {
            --primary: #1A237E;
            --primary-light: #534BAE;
            --primary-dark: #000051;
            --secondary: #FDD835;
            --secondary-light: #FFF263;
            --secondary-dark: #C6A700;
            --accent: #E64A19;
            --accent-light: #FF7D47;
            --accent-dark: #AC1600;
            --background: #FFFFFF;
            --text: #212121;
            --text-secondary: #757575;
        }
        
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background-color: var(--background);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background-color: var(--primary-light);
            border-color: var(--primary-light);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--text);
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover,
        .btn-secondary:focus,
        .btn-secondary:active {
            background-color: var(--secondary-dark);
            border-color: var(--secondary-dark);
            color: var(--text);
            transform: translateY(-2px);
        }
        
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(26, 35, 126, 0.1);
            min-height: 70px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary) !important;
            text-decoration: none;
            padding: 15px;
        }
        
        .navbar-nav > li > a {
            color: var(--text) !important;
            font-weight: 500;
            padding: 20px 15px !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav > li > a:hover,
        .navbar-nav > li > a:focus {
            color: var(--primary) !important;
            background-color: transparent !important;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/creative-design-pattern-hero-1280x720.jpeg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            font-weight: 300;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(26, 35, 126, 0.1);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            text-align: center;
            color: var(--primary);
        }
        
        .service-description {
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.7;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(26, 35, 126, 0.1);
            position: relative;
            padding-left: 30px;
        }
        
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--secondary);
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        .testimonial-position {
            color: var(--text-secondary);
            font-size: 14px;
        }
        
        .stats-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 60px 0;
        }
        
        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }
        
        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 10px;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 5px solid var(--secondary);
        }
        
        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-name {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .team-role {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .team-bio {
            color: var(--text-secondary);
            line-height: 1.6;
        }
        
        .contact-info {
            background: var(--primary);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--text);
            font-size: 20px;
        }
        
        .contact-details h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .contact-details p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        
        .form-control {
            border-radius: 8px;
            border: 2px solid rgba(26, 35, 126, 0.1);
            padding: 12px 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
            outline: none;
        }
        
        .footer {
            background: var(--text);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-section {
            margin-bottom: 40px;
        }
        
        .footer-title {
            color: var(--secondary);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            color: white;
            padding: 20px;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .service-card {
                margin-bottom: 20px;
                padding: 30px 20px;
            }
            
            .navbar-brand {
                font-size: 24px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .service-card {
                padding: 25px 15px;
            }
            
            .btn-primary,
            .btn-secondary {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
