        .pro-series-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .image-side {
            background: #1a1a1a;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0;
            color: white;
            position: relative;
        }

        .background-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
            pointer-events: none;
        }

        .image-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            z-index: 3;
            width: 100%;
            padding: 60px;
        }

        .image-side h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .image-side .subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 60px;
        }

        .product-image {
            width: 100%;
            max-width: 500px;
            margin-bottom: 40px;
        }

        .models {
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .text-side {
            background: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
        }

        .text-side h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
        }

        .text-side p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
        }

        .learn-more-btn {
            display: inline-block;
            padding: 15px 45px;
            border: 2px solid #333;
            border-radius: 50px;
            background: transparent;
            color: #333;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            width: fit-content;
        }

        .learn-more-btn:hover {
            background: #333;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 1024px) {
            .pro-series-section {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }

            .image-side {
                min-height: 400px;
                padding: 0;
                order: 1;
            }

            .text-side {
                padding: 50px 40px;
                min-height: auto;
                order: 2;
            }

            .background-image {
                object-fit: contain;
                width: 100%;
                height: 100%;
            }

            .image-content {
                padding: 40px;
            }

            .image-side h1 {
                font-size: 3rem;
            }

            .image-side .subtitle {
                font-size: 1.2rem;
            }

            .models {
                font-size: 1.1rem;
            }

            .text-side h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .image-side {
                min-height: 350px;
                padding: 0;
                order: 1;
            }

            .text-side {
                padding: 40px 30px;
                order: 2;
            }

            .background-image {
                object-fit: contain;
            }

            .image-content {
                padding: 30px;
            }

            .image-side h1 {
                font-size: 2.5rem;
            }

            .image-side .subtitle {
                font-size: 1rem;
                margin-bottom: 40px;
            }

            .models {
                font-size: 1rem;
            }

            .text-side h2 {
                font-size: 2rem;
            }

            .text-side p {
                font-size: 1rem;
            }
        }

                .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;
            }
        }

    