.comparison-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.comparison-section * {
    box-sizing: border-box;
}

.comparison-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.comp-table-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.comp-table {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 20px;
    border: 1px solid #eee;
}

.comp-header-row {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 10px;
}

.comp-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-cell {
    flex: 1;
    text-align: center;
    font-size: 15px;
}

.feature-name {
    flex: 2;
    text-align: left;
    font-weight: 700;
    color: #000;
    padding-left: 10px;
}

.brand-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comp-brand-img {
    max-width: 100px;
    height: auto;
    display: block;
}

.other-cell {
    font-weight: 700;
    color: #555;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
}

.status-cell {
    font-size: 18px;
    font-weight: bold;
}

.check {
    color: #2e8b57;
}

.cross {
    color: #a73c3c;
}

.comp-text-col {
    flex: 1;
}

.comp-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

.highlight-pink {
    color: #e27890;
}

@media (max-width: 900px) {
    .comparison-section {
        padding: 20px;
    }

    .comparison-container {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .comp-title {
        font-size: 32px;
    }

    .feature-name {
        font-size: 13px;
    }
}