        .check {
            width: 16px;
            height: 16px;
            fill: #28a745;
        }

        /* Desktop Styles */
        .desktop-table {
            background: white;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .desktop-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .desktop-table th {
    
            padding: 40px 15px 0px 15px;
            text-align: center;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 24px;
            border-left: 1px solid #ececec;
        }
        .desktop-table th:nth-child(1),.desktop-table th:nth-child(2) {
            background:  #E6F4F6;
            border-left: 0px solid #ececec;
        }

        .desktop-table td {
            padding: 15px;
            border: 1px solid #ececec;
            vertical-align: top;
            font-size: 14px;  
        }
         .desktop-table td:nth-child(1) {
            padding: 10px 0;
            width: 40px;
        }
        .desktop-table td:nth-child(2) {
            width: 313px;
            text-align: left !important;
        }
        .desktop-table td:nth-child(3),.desktop-table td:nth-child(4),.desktop-table td:nth-child(5) {
            width: 236px;
            text-align: center;
        }

        .disclaimer {
            font-size: 14px;
            text-align: center;
            margin-top: 10px;
        }

       /* .desktop-table tr:hover {
            background: #f8f9fa;
        }*/

        .toggle-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .toggle-btn img {
            transition: transform 0.3s ease;
        }

        .toggle-btn.active img {
            transform: rotate(180deg);
        }

        .detail-row {
            display: none;
            background: #f8f9fa;
        }

        .detail-row.show {
            display: table-row;
        }

        .detail-row td {
            padding: 8px 15px;
            font-size: 1.3rem;
            color: #333333;
            border-left: 1px solid #ececec;  
            vertical-align: middle;
        }

        .detail-row td:first-child {
            border-left: none;
        }

        .detail-row .detail-product-name {
            color: #495057;
            padding-left: 15px;
        }

        /* Mobile Styles */
        .mobile-tables {
            display: none;
        }

        .mobile-table {
            background: white;
            margin-bottom: 60px;
            overflow: hidden;
        }

        .mobile-table-header {
            
            padding: 60px 0 10px 0;
            text-align: center;
            font-weight: 600;
            font-size: 24px;
        }
        .mobile-table-subheader {
            
            padding: 10px;
            text-align: center;
            font-weight: 400;
            font-size: 1.0rem;
        }
        .mobile-row {
            display: flex;
            border: 1px solid #ececec;
            align-items: center;
        }

        .mobile-row:last-child {
            border-bottom: none;
        }

        .mobile-toggle {
            padding: 0;
            border-right: 1px solid #e9ecef;
        }

        .mobile-content {
            flex: 1;
            padding: 15px;
        }

        .mobile-product-name {
            font-weight: 600;
            font-size: 14px;
            color: #333;
            margin-bottom: 5px;
            width: 60%;
            float: left;
            text-align: left;
        }

        .mobile-product-desc {
            color: #6c757d;
            font-size: 1.2rem;
            line-height: 1.4;
            float: left;
            width: 40%;
            text-align: right;
        }

        .mobile-detail-row {
            display: none;
            background: #f8f9fa;
            padding: 15px;
            border-top: 1px solid #e9ecef;
        }

        .mobile-detail-row.show {
            display: block;
        }

        .mobile-detail-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .mobile-detail-item:last-child {
            border-bottom: none;
        }

        .mobile-detail-name {
            padding: 0 0 0 36px;
            font-size: 14px;
            color: #495057;
            flex: 1;
            text-align: left;
            word-break: keep-all !important;
            overflow-wrap: break-word !important;
        }

        .mobile-detail-value {
            width: 100px;
            color: #333333;
            font-size: 1.2rem;
            text-align: right;
            word-break: keep-all !important;
            overflow-wrap: break-word !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .desktop-table {
                display: none;
            }
            
            .mobile-tables {
                display: block;
            }

        }

        /* Loading animation */
        .loading {
            text-align: center;
            padding: 40px;
            color: #6c757d;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }