.pricing {
    background-color: var(--background-color-gray);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}



.price {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--background-color-dark);
}

.pricing-card hr {
    margin: 24px 0;
    border: none;
    height: 2px;
    background-color: #E5E7EB;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.feature-list li {
    padding: 8px 0;
    color: #4B5563;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 12px;
    background-image: url('/images/icons/checkmark-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 992px) {
    

} 