
        :root {
            --primary: #4a4a9c;
            --secondary: #e63946;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero {
            background-color: white;
            padding: 40px 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }
        
        .video-container {
            width: 100%;
            height: 500px; /* Fixed height */
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
            margin-top: 10px;
        }
        
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .content-section {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .feature-card {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-card h3 {
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .feature-card h3 i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .specs-table th, .specs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .specs-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .specs-table tr:hover {
            background-color: #e9ecef;
        }
        
        .benefits-list {
            list-style-type: none;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .image-container {
            margin-top: 40px;
            text-align: center;
        }
        
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #2c2c6e);
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 30px 0;
            margin-top: 50px;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .specs-table {
                display: block;
                overflow-x: auto;
            }
            
            .video-container {
                height: 300px; /* Adjust height for mobile */
            }
        }
    