h3 {
    font-weight: 600;
}
h4 {
    font-weight: 500;
}
.rating {
    font-weight: 500;
}
.vs-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--dark-red);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}
.btn-compare-action {
    background-color: var(--light-cream);
    color: var(--dark-red);
    border: 1px solid var(--dark-red);
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-compare-action:hover {
    background-color: var(--dark-red);
    color: white;
}
.comparison-table th {
    font-weight: 600;
    white-space: nowrap;
}
.comparison-table .table-group-header {
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 2rem;
}
.comparison-table td {
    color: var(--gray-text);
}
@media (max-width: 991.98px) {
    .vs-circle {
        margin: 2rem 0;
    }
}