.comparison-section {
    background-color: #f0f9ff;
    padding: 60px 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.comparison-header {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.comp-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
}

.comp-desc {
    font-size: 18px;
    color: #000000;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: transparent;
    min-width: 600px;
}

.comparison-table th {
    padding: 10px;
    font-size: 16px;
    font-weight: 800;
    color: #000;
}

.comparison-table td {
    padding: 6px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}

.product-col {
    background-color: #53a6f8;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 2px solid #e5e7eb;
    padding: 0;
}

.th-content {
    padding: 20px;
}

.criteria-name {
    text-align: left;
    font-weight: 600;
    color: #333;
    background-color: transparent;
    width: 25%;
}

.product-cell {
    background-color: #53a6f8;
    color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: table-cell;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-cell-last {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom: none;
}

.competitor-cell {
    color: #000000;
}

.table-icon {
    width: 20px;
    height: 20px;
    display: block;
    margin: 0 auto 4px auto;
}

.product-cell span, .competitor-cell span {
    display: block;
    font-size: 12px;
    line-height: 1.1;
}

.competitor-col {
    border-bottom: 2px solid #e5e7eb;
}

.criteria-col{
    border-bottom: 2px solid #e5e7eb;
}

.criteria-name,
.product-cell,
.competitor-cell {
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    height: 65px !important;
    box-sizing: border-box !important;
}

@media (max-width: 900px) {
    .comparison-section {
        background-color: #f0f9ff;
        padding: 20px 20px 60px 20px;
        border-radius: 8px;
        margin-top: 40px;
        text-align: center;
    }

    .comp-title {
        font-size: 20px;
    }

    .comp-desc {
        font-size: 14px;
        line-height: 1.2;
    }

    .table-wrapper {
        overflow-x: auto !important;
        width: 100% !important;
        display: block !important;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        width: auto !important;
        min-width: 360px !important;
        table-layout: fixed !important;
    }

    .criteria-name,
    .product-cell,
    .competitor-cell {
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        height: 80px !important;
        padding: 10px 5px !important;
        box-sizing: border-box !important;
    }

    .product-cell span,
    .competitor-cell span {
        font-size: 11px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .criteria-name {
        font-size: 14px !important;
        font-weight: normal !important;
    }

    .product-col,
    .th-content,
    .competitor-col,
    .th-content,
    .criteria-col{
        font-size: 14px !important;
        padding: 0 !important;
        height: 60px !important;
    }

}