.mainContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    padding: 4rem 7.5rem;
    max-width: var(--content-max-width);
    margin: 0 auto;
    width: 100%;
}

.leftColumn {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.rightColumn {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quoteWrapper {
    width: 100%;
    max-width: 435px;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.description {
    color: var(--color-text-secondary);
}

.plainFeaturesWrapper {
    height: 8rem;
    width: 100%;
    background-color: var(--color-bg-neutral-light);
    border-radius: var(--border-radius-md);
}

.benefitsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.ratingContainer {
    margin: 0 auto;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.mobileOnly {
    display: none;
}

.desktopOnly {
    display: block;
}

.hsaFsaText {
    background-color: var(--color-bg-neutral-light);
    text-align: center;
    padding: 1rem;
    width: 100%;
    border-radius: var(--border-radius-xs);
}

.plansSection {
    grid-area: plans;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px;
}

.plans {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}


@media (width <= 1024px) {
    .mainContainer {
        padding: 2rem 1rem;
    }
}

@media (width <= 768px) {
    .mainContainer {
        grid-template-columns: 1fr;
    }
    .mobileOnly {
        display: block;
    }
    .desktopOnly {
        display: none;
    }
    .quoteWrapper {
        max-width: 100%;
    }
}
