
        :root {
            --primary-color: #223777;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-color: #334155;
            --light-gray: #f1f5f9;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
        }
        
        .primary-color { color: var(--primary-color); }
        .bg-primary { background-color: var(--primary-color); }
        .border-primary { border-color: var(--primary-color); }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(34, 55, 119, 0.15);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(34, 55, 119, 0.3);
        }
        
        .contact-link {
            color: var(--primary-color);
            text-decoration: underline;
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            color: #1e40af;
            text-decoration: none;
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .image-container:hover .image-overlay {
            transform: translateY(0);
        }
        
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
            margin: 2rem 0;
        }
        
        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .language-toggle:hover {
            background: #1e40af;
            transform: scale(1.05);
        }
        
        .content-section {
            display: none;
        }
        
        .content-section.active {
            display: block;
        }
        
        @media (max-width: 768px) {
            .language-toggle {
                top: 10px;
                right: 10px;
                padding: 8px 12px;
                font-size: 12px;
            }
        }
        
        @media print {
            .language-toggle {
                display: none;
            }
            
            body {
                background: white;
            }
            
            .content-section {
                display: block !important;
            }
        }
    