.angie-comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
}
.angie-comparison-table {
    display: flex;
    flex-direction: column;
    min-width: 600px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}
.ct-row {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
}
.ct-row:last-child {
    border-bottom: none;
}
.ct-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ct-cell:last-child {
    border-right: none;
}
.ct-row-header, .ct-row-header-empty, .ct-row-footer-empty {
    flex: 0 0 200px;
    text-align: left;
    font-weight: 600;
    align-items: flex-start;
    background: #fcfcfc;
}
.ct-header-cell {
    background: #f9f9f9;
}
.ct-header-title {
    margin: 0 0 10px;
    font-size: 20px;
}
.ct-header-price {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}
.ct-badge {
    position: absolute;
    top: -12px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.ct-highlighted, .ct-highlighted-cell {
    background: #fff9f0;
    box-shadow: 0 -4px 0 #f39c12 inset;
}
.ct-icon-yes { color: #2ecc71; }
.ct-icon-no { color: #e74c3c; }
.ct-mobile-label { display: none; }
.ct-button {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.ct-button:hover {
    background: #2980b9;
    color: #fff;
}

@media (max-width: 768px) {
    .angie-comparison-table {
        min-width: 100%;
        border: none;
    }
    .ct-row-header, .ct-row-header-empty, .ct-row-footer-empty {
        display: none;
    }
    .ct-row {
        flex-direction: column;
        margin-bottom: 20px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
    }
    .ct-header-row { margin-bottom: 0; border-bottom: none; }
    .ct-body-row { border: none; margin-bottom: 0; }
    .ct-footer-row { border-top: 1px solid #e5e5e5; margin-bottom: 20px; }
    .ct-cell { border-right: none; border-bottom: 1px solid #eee; flex-direction: row; justify-content: space-between; }
    .ct-mobile-label { display: block; font-weight: bold; }
}