.price-comparison {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 50px 0 0 0;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
    overflow-x: auto; /* Prevent horizontal scroll unless absolutely needed */
}

.price-column {
    flex: 1 1 0;
    min-width: 0;
    max-width: 350px;
    background-color: white;
    box-shadow: 0 7px 30px rgba(52, 31, 97, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .price-comparison {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 0;
    }

    .price-column {
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px;
        border-radius: 8px !important;
    }

        .price-column:first-child,
        .price-column:last-child {
            border-radius: 8px !important;
        }
}

.price-column:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.price-column:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.price-column.popular {
    position: relative;
    /*background-color: var(--cosairus-blue);*/
    background: linear-gradient(45deg, var(--color-dark-blue), var(--color-lighter-blue));
    box-shadow: 0 7px 30px rgba(52, 13, 135, 0.3);
    color: white;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-bottom: 16px;
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--heading-font-family);
    font-weight: bold;
}

.price {
    font-size: 1.75rem;
    display: flex;
}

.dollar-sign {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.per-month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.plan-name {
    text-transform: uppercase;
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0;
}
.scalability-statement {
    font-style: italic;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .725rem
}

.divider {
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.price-column.popular .divider {
    background-color: rgba(255, 255, 255, 0.2);
}

.feature {
    display: flex;
    align-items: center;
    margin: 0.5rem;
    font-size: 1rem;
}

.feature.inactive span {
    color: #999;
    text-decoration: line-through;
}

.most-popular {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.price-column.popular .cta {
    background: white;
    color: var(--color-dark-blue);
}

i {
    color: var(--color-dark-blue);
    padding: 4px;
    border-radius: 50%;
    margin-right: 8px;
}

.price-column.popular i {
    background-color: white;
}

.btn-cta {
    border-radius: 0;
    background-color: var(--color-dark-blue);
    color: white;
}

.price-column {
    margin-bottom: 40px;
}

.price-column.popular i {
    background-color: white;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
}
