
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #000000;
            --accent-color: #f8fafc;
            --text-dark: #1a202c;
            --text-light: #718096;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
        }
        
        .section-padding {
            padding: 4rem 0;
        }
        
        .card-shadow {
            box-shadow: 0 10px 25px rgba(48, 160, 255, 0.1);
        }
        
        .promotional-poster {
            width: 100%;
            max-width: 1920px;
            height: auto;
            aspect-ratio: 1920/830;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin: 2rem auto;
            display: block;
        }
        
        /* EASY MODIFICATION: Change the URL below to update the promotional poster */
        .promotional-poster-placeholder {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border: 3px dashed var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-light);
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            padding: 3rem;
        }
        
        .quote-box {
            background: linear-gradient(135deg, var(--primary-color), #1e40af);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            border-left: 6px solid #fbbf24;
            margin: 2rem 0;
            position: relative;
        }
        
        .quote-box::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: -1rem;
            left: 1rem;
            opacity: 0.3;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px solid #f59e0b;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .comparison-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        
        .comparison-table th {
            background: var(--primary-color);
            color: white;
            padding: 1rem;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--accent-color);
            padding: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .faq-answer {
            padding: 1.5rem;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(48, 160, 255, 0.3);
        }
        
        .contact-section {
            background: linear-gradient(135deg, var(--primary-color), #1e40af);
            color: white;
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 2rem 0;
            }
            
            .promotional-poster-placeholder {
                font-size: 1.2rem;
                padding: 2rem 1rem;
            }
        }
    