
        :root {
            --primary-color: #223777;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .bg-primary { background-color: var(--primary-color); }
        .text-primary { color: var(--primary-color); }
        .border-primary { border-color: var(--primary-color); }
        .hover\:bg-primary:hover { background-color: var(--primary-color); }
        .hover\:text-primary:hover { color: var(--primary-color); }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, rgba(34, 55, 119, 0.8) 100%);
        }
        
        .section-divider {
            background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
            height: 2px;
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(34, 55, 119, 0.15);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, var(--primary-color), #4f46e5);
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--primary-color), #4f46e5);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(34, 55, 119, 0.3);
            text-decoration: none;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .timeline-item {
            border-left: 3px solid var(--primary-color);
        }
        
        .quote-box {
            border-left: 4px solid var(--primary-color);
            background: rgba(34, 55, 119, 0.05);
        }
        
        .faq-item {
            border-bottom: 1px solid var(--border-color);
        }
        
        .faq-question {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary-color);
        }
        
        .author-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        @media print {
            .no-print { display: none !important; }
            body { font-size: 12pt; line-height: 1.4; }
            .page-break { page-break-before: always; }
        }
        
        .spec-table {
            border-collapse: collapse;
        }
        
        .spec-table th,
        .spec-table td {
            border: 1px solid var(--border-color);
            padding: 12px;
            text-align: left;
        }
        
        .spec-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .spec-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .contact-card {
            background: white;
            border: 2px solid var(--primary-color);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(34, 55, 119, 0.15);
        }
        
        .contact-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            margin: 8px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 200px;
        }
        
        .email-button {
            background-color: #dc2626;
            color: white;
        }
        
        .email-button:hover {
            background-color: #b91c1c;
            color: white;
            text-decoration: none;
        }
        
        .whatsapp-button {
            background-color: #059669;
            color: white;
        }
        
        .whatsapp-button:hover {
            background-color: #047857;
            color: white;
            text-decoration: none;
        }
        
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background: var(--primary-color);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(34, 55, 119, 0.3);
            transition: all 0.3s ease;
        }
        
        .floating-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(34, 55, 119, 0.4);
        }
        
        @media (max-width: 768px) {
            .floating-cta {
                bottom: 10px;
                right: 10px;
                font-size: 14px;
                padding: 10px 20px;
            }
            .contact-button {
                min-width: auto;
                width: 100%;
                margin: 4px 0;
            }
        }
    