        .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;
            }
        }
        .adl-outda-gallery-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .adl-outda-gallery-wrapper {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            padding: 0;
            margin: 0;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .adl-outda-main-container {
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            padding: 60px 40px;
        }

        /* Header Section */
        .adl-outda-header-section {
            margin-bottom: 50px;
        }

        .adl-outda-category-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .adl-outda-main-title {
            font-size: 52px;
            font-weight: bold;
            margin-bottom: 25px;
            color: #000;
        }

        .adl-outda-description {
            font-size: 15px;
            line-height: 1.8;
            color: #555;
            max-width: 900px;
        }

        /* Main Layout Grid */
        .adl-outda-main-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }

        /* Hero Section with Diamond Layout */
        .adl-outda-hero-section {
            position: relative;
            height: auto;
            min-height: 400px;
            background: transparent;
            border-radius: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .adl-outda-hero-section img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            max-height: 800px;
        }

        .adl-outda-diamond-container {
            display: none;
        }

        .adl-outda-diamond-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            width: 90%;
            height: 90%;
        }

        .adl-outda-diamond-item {
            background: white;
            border: 4px solid white;
            transform: rotate(45deg);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .adl-outda-diamond-content {
            transform: rotate(-45deg) scale(1.4);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            overflow: hidden;
        }

        .adl-outda-diamond-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .adl-outda-hero-overlay {
            display: none;
        }

        /* Right Side Cards */
        .adl-outda-side-cards {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .adl-outda-info-card {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            height: 285px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .adl-outda-info-card h3 {
            display: none;
        }

        .adl-outda-info-card .adl-outda-image-placeholder {
            width: 100%;
            height: 100%;
            background: transparent;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .adl-outda-info-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        /* Bottom Gallery Grid */
        .adl-outda-bottom-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .adl-outda-gallery-item {
            background: transparent;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            height: 350px;
        }

        .adl-outda-gallery-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            padding: 0;
        }

        .adl-outda-gallery-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }

        .adl-outda-placeholder {
            text-align: center;
            color: #999;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .adl-outda-main-layout {
                grid-template-columns: 1fr;
            }

            .adl-outda-side-cards {
                flex-direction: row;
            }

            .adl-outda-hero-section {
                height: 500px;
            }

            .adl-outda-hero-section img{
               object-fit: contain;
            }
            
        }

        @media (max-width: 768px) {
            .adl-outda-bottom-gallery {
                grid-template-columns: 1fr;
            }

            .adl-outda-side-cards {
                flex-direction: column;
            }

            .adl-outda-main-title {
                font-size: 36px;
            }

            .adl-outda-hero-section {
                min-height: 400px;
                max-height: none;
            }

            .adl-outda-hero-section img {
                width: 100%;
                height: auto;
                max-height: none;
            }

            .adl-outda-diamond-grid {
                gap: 10px;
            }

            .adl-outda-main-container {
                padding: 30px 20px;
            }
        }