.features-diff-section {
    padding: 0 15px 40px 15px;
    background-color: #fff;
    box-sizing: border-box;
}

.features-diff-section * {
    box-sizing: border-box;
}

.diff-table {
    width: 100%;
    font-size: 14px;
}

.diff-row,
.diff-header {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    width: 100%;
}

.diff-header {
    background-color: #000;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
}

.row-blue {
    background-color: #dae5f0;
    color: #000;
}

.row-white {
    background-color: #fff;
    color: #000;
}

.cell-feature {
    flex: 1;
    text-align: center;
    font-weight: 700;
    padding-right: 5px;
    min-width: 0;
    font-size: 18px;
}

.cell-others,
.cell-ours {
    width: 90px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.diff-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
}

.diff-desc {
    font-size: 11px;
    line-height: 1.2;
    color: #333;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 800px) {
    .features-diff-section {
        padding: 0 0 40px 0;
    }

    .diff-row,
    .diff-header {
        padding: 12px 10px;
    }

    .diff-header {
        font-size: 14px;
        border-radius: 0;
    }

    .cell-feature {
        font-size: 15px;
        padding-right: 0;
    }

    .cell-others,
    .cell-ours {
        width: 85px;
        font-size: 20px;
    }

    .diff-desc {
        font-size: 14px;
    }
}