
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px 40px 20px;
        }

        /* HEADER SECTION */
        .header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .header-section h1 {
            font-size: 44px;
            color: #2d3748;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .header-section p {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        /* MAIN CONTENT */
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
            background: white;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(45, 55, 72, 0.12);
        }

        .description-box {
            padding: 0;
        }

        .description-box h2 {
            font-size: 26px;
            color: #2d3748;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .description-box p {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .description-box p:last-child {
            margin-bottom: 0;
        }

        .image-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
            border-radius: 10px;
            padding: 40px;
            min-height: 500px;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(45, 55, 72, 0.15));
            transition: transform 0.3s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        /* SPECIFICATIONS TABLE */
        .specs-section {
            background: white;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 2px 20px rgba(45, 55, 72, 0.12);
            overflow-x: auto;
        }

        .specs-section h2 {
            font-size: 26px;
            color: #2d3748;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
        }

        table thead {
            background-color: #2d3748;
        }

        table th {
            padding: 18px 20px;
            text-align: left;
            font-weight: 600;
            color: white;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
        }

        table td {
            padding: 18px 20px;
            border-bottom: 1px solid #e2e8f0;
            font-size: 15px;
            color: #4a5568;
        }

        table tbody tr {
            transition: background-color 0.3s ease;
        }

        table tbody tr:hover {
            background-color: #edf2f7;
        }

        table tbody tr:last-child td {
            border-bottom: none;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }

            .image-container {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }

            .header-section h1 {
                font-size: 32px;
            }

            .header-section p {
                font-size: 16px;
            }

            .main-content,
            .specs-section {
                padding: 30px;
            }

            .description-box h2,
            .specs-section h2 {
                font-size: 20px;
            }

            table th,
            table td {
                padding: 12px 10px;
                font-size: 13px;
            }

            .image-container {
                padding: 30px;
                min-height: 300px;
            }
        }

        .description-box {
            position: relative;
            padding-left: 0;
        }