 .container {
            max-width: 1400px;
            margin: 0 auto;
            font-family: 'Urbanist', sans-serif;
            /* padding: 40px 20px; */

        }

        .product-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            background: white;
            padding: 40px;
        }

        .image-section {
            position: relative;
        }

        .main-image {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content-section {
            padding: 20px 0;
        }

        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8f9fa;
            color: #6c757d;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid #e9ecef;
        }

        .product-title {
            font-size: 46px;
            font-weight: 600;
            color: #1C1E36;
            margin-bottom: 24px;
            line-height: 1.2;
            font-family: 'Urbanist', sans-serif;
        }

        .product-description {
            font-size: 22px;
            color: #585858;
            line-height: 1.8;
            margin-bottom: 32px;
            font-family: 'Urbanist', sans-serif;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: #FFFFFF;
            border-radius: 20px;
            border: 1px solid #D2D2D2;
            transition: all 0.3s ease;
            font-family: 'Urbanist', sans-serif;
        }

        .feature-item:hover {
            background: #e9ecef;
            transform: translateY(-2px);
        }

        .feature-icon {
            font-size: 18px;
            color: #495057;
        }

        .feature-text {
            font-size: 18px;
            color: #000000;
            font-weight: 500;
            font-family: 'Urbanist', sans-serif;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 20px 16px;
            }

            .product-section {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 30px 24px;
            }

            .product-title {
                font-size: 32px;
            }

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

            .main-image {
                height: 300px;
            }

            .feature-item {
                padding: 14px 18px;
            }

            .feature-text {
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .product-section {
                padding: 24px 20px;
            }

            .product-title {
                font-size: 28px;
            }

            .product-description {
                font-size: 18px;
            }

            .feature-item {
                padding: 12px 16px;
            }
        }