/* Free Forever Section Styles */
.free-forever-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-default);
}

.free-forever-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.free-forever-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.free-forever-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.free-forever-cta {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 24px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: var(--transition-default);
    text-align: center;
    display: inline-block;
}

.free-forever-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
