        .product-roadmap-widget {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .product-roadmap-widget * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .product-roadmap-widget .product-roadmap {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: rgba(59, 130, 246, 0.03);
            padding: 40px 20px;
            min-height: 100vh;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .product-roadmap-widget .product-roadmap .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.08);
            overflow: hidden;
            backdrop-filter: blur(10px);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .product-roadmap-widget .product-roadmap .header {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            color: white;
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        .product-roadmap-widget .product-roadmap .header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 197, 253, 0.2));
            border-radius: 50%;
            transform: translate(50px, -50px);
        }

        .product-roadmap-widget .product-roadmap .logo {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .product-roadmap-widget .product-roadmap .logo-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .product-roadmap-widget .product-roadmap .header-title {
            font-size: 42px;
            font-weight: 700;
            color: white;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .product-roadmap-widget .product-roadmap .roadmap-table {
            width: 100%;
            max-width: 100%;
            border-collapse: collapse;
            background: white;
            table-layout: fixed;
            overflow-wrap: break-word;
            word-wrap: break-word;
        }

        .product-roadmap-widget .product-roadmap .table-header {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
        }

        .product-roadmap-widget .product-roadmap .table-header th {
            padding: 18px 24px;
            text-align: left;
            font-weight: 700;
            font-size: 15px;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: white;
        }

        .product-roadmap-widget .product-roadmap .table-header th:last-child {
            border-right: none;
        }

        .product-roadmap-widget .product-roadmap .quarter-header {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            font-weight: 700;
            font-size: 15px;
            padding: 16px 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .product-roadmap-widget .product-roadmap .quarter-header.q2 {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .product-roadmap-widget .product-roadmap .quarter-header.q3 {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
        }

        .product-roadmap-widget .product-roadmap .quarter-header.q4 {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .product-roadmap-widget .product-roadmap .work-item {
            border-bottom: 1px solid #e2e8f0;
        }

        .product-roadmap-widget .product-roadmap .work-item td {
            padding: 16px 24px;
            font-size: 15px;
            color: #2d3748;
            border-right: 1px solid #e2e8f0;
            vertical-align: middle;
            line-height: 1.5;
            overflow-wrap: break-word;
            word-wrap: break-word;
            hyphens: auto;
            max-width: 0;
        }

        .product-roadmap-widget .product-roadmap .work-item td:last-child {
            border-right: none;
        }

        .product-roadmap-widget .product-roadmap .work-item:hover {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            transform: translateY(-1px);
            transition: all 0.2s ease;
        }

        .product-roadmap-widget .product-roadmap .work-item:last-child {
            border-bottom: none;
        }

        .product-roadmap-widget .product-roadmap .checkmark {
            color: #10b981;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            text-shadow: 0 1px 2px rgba(16, 185, 129, 0.2);
        }

        .product-roadmap-widget .product-roadmap .platform-column {
            text-align: center;
            width: 25%;
        }

        .product-roadmap-widget .product-roadmap .work-item-name {
            font-weight: 600;
            width: 75%;
            color: #1e293b;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            max-width: 0;
            white-space: normal;
        }

        @media (max-width: 768px) {
            .product-roadmap-widget .product-roadmap {
                padding: 20px 5px;
            }

            .product-roadmap-widget .product-roadmap .header {
                padding: 30px 20px;
                flex-direction: column;
                text-align: center;
            }

            .product-roadmap-widget .product-roadmap .header-title {
                font-size: clamp(24px, 5vw, 32px);
            }

            .product-roadmap-widget .product-roadmap .container {
                border-radius: 10px;
                margin: 0 5px;
            }

            .product-roadmap-widget .product-roadmap .table-header th,
            .product-roadmap-widget .product-roadmap .work-item td {
                padding: 12px 8px;
                font-size: 13px;
            }

            .product-roadmap-widget .product-roadmap .work-item-name {
                width: 70%;
                font-size: 13px;
            }

            .product-roadmap-widget .product-roadmap .platform-column {
                width: 30%;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .product-roadmap-widget .product-roadmap {
                padding: 15px 2px;
            }

            .product-roadmap-widget .product-roadmap .header {
                padding: 20px 15px;
            }

            .product-roadmap-widget .product-roadmap .header-title {
                font-size: clamp(20px, 6vw, 28px);
            }

            .product-roadmap-widget .product-roadmap .container {
                margin: 0 2px;
                border-radius: 8px;
            }

            .product-roadmap-widget .product-roadmap .table-header th,
            .product-roadmap-widget .product-roadmap .work-item td {
                padding: 10px 6px;
                font-size: 12px;
            }

            .product-roadmap-widget .product-roadmap .work-item-name {
                width: 65%;
                font-size: 12px;
            }

            .product-roadmap-widget .product-roadmap .platform-column {
                width: 35%;
                font-size: 12px;
            }
        }