.comparison-section {
    background-color: #242427;
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.column {
    flex: 1;
    min-width: 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    min-height: 50px;
}

.brand-logo {
    margin-bottom: 20px;
}

.brand-logo img {
    height: 60px;
    width: auto;
}

.circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-red {
    border: 5px solid #e74c3c;
}

.circle-gold {
    border: 5px solid #f1c40f;
}

.column-desc {
    font-size: 14px;
    line-height: 1.4;
    max-width: 220px;
    font-weight: 700;
}

.info-column {
    flex: 1.5;
    min-width: 300px;
}

.main-title {
    font-family: serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.4;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    width: 30px;
    height: 30px;
    border: 2px solid #f1c40f;
    border-radius: 50%;
    color: #f1c40f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.features-list li strong {
    font-weight: 800;
}

@media (max-width: 991px) {
    .comparison-section {
        padding: 40px 10px;
    }

    .container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 20px 10px;
    }

    .info-column {
        flex: 0 0 100%;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
        text-align: center;
        min-width: unset;
    }

    .column {
        flex: 0 0 calc(50% - 10px);
        max-width: 50%;
        min-width: 0;
        order: 2;
        padding: 0;
    }

    .circle {
        width: 140px;
        height: 140px;
        border-width: 3px;
        margin-bottom: 15px;
    }

    .column-title {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .brand-logo img {
        height: 40px;
    }

    .column-desc {
        font-size: 12px;
        max-width: 100%;
    }

    .features-list li {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 26px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .column-title {
        font-size: 12px;
    }

    .features-list li {
        font-size: 15px;
    }
}