:root {
            --primary-color: #1a472a;
            --secondary-color: #2d5f3f;
            --accent-color: #d4af37;
            --text-dark: #1a1a1a;
            --text-light: #666;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/assets/images/bg-image.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .comparison-card {
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            background: white;
        }
        
        .comparison-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-color: var(--accent-color);
        }
        
        .brand-logo {
            height: 60px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }
        
        .content-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-color);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .footer {
            background-color: var(--text-dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--accent-color);
        }
        
        .badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
        }
        
        .badge-container img {
            height: 50px;
            object-fit: contain;
        }
        
        .disclaimer {
            background-color: #2a2a2a;
            padding: 20px 0;
            text-align: center;
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
            margin: 10px 0;
        }