 .header {
            background: #5A003B;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info {
            font-size: 0.9rem;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
        }

        .hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .models {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .model-badge {
            background: rgba(255,255,255,0.1);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
        }

       
        /* Remove container padding on small screens and prevent left gap */
.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
@media (max-width: 768px) {
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}




        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            color: #1a1a1a;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #5A003B;
            margin: 15px auto 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #5A003B;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .feature-card ul {
            list-style: none;
            padding-left: 0;
        }

        .feature-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .feature-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #5A003B;
            font-weight: bold;
        }

        .comparison-section {
            background: #f8f9fa;
        }

        .comparison-table {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 5px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        th {
            background: #1a1a1a;
            color: white;
            font-weight: 600;
        }

        .highlight {
            background: #e8f8ff;
            font-weight: bold;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .spec-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #5A003B;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .spec-label {
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .spec-value {
            color: #666;
        }

        .cta-section {
            background: #1a1a1a;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #5A003B;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(90, 0, 59, 0.4);
        }

        .warranty-badge {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 30px 40px;
            border-radius: 15px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(255,107,107,0.3);
        }

        footer {
            background: #ffff;
            color: black;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-contact {
            margin-top: 20px;
            line-height: 2;
        }

        .footer-contact a {
            color: #5A003B;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .model-badge {
                font-size: 1rem;
                padding: 10px 20px;
            }
        }
       .two-images-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            max-width: 100%;
        }

        .image-container {
            position: relative;
            overflow: hidden;
            background: #fff;

            height: 800px;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
           
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .two-images-section {
                grid-template-columns: 1fr;
            }
        }