As Seen On

Recognized By
Understanding the Basics: What is Criminal Law?
Criminal law is a body of regulations and statutes that describes conduct that is prohibited by the government because it threatens and harms public safety and welfare. The primary purpose of these laws is to set forth the punishment to be imposed upon those who disobey them. Unlike civil law, which involves private disputes between parties, criminal law is explicitly concerned with punishing wrongdoings that are detrimental to society as a whole, not just to individual victims. The state or federal government, represented by a prosecutor or district attorney, is responsible for initiating and pursuing a case against a defendant in a criminal court.Criminal Acts and the LawCriminal acts are divided into two broad categories: felonies and misdemeanors. Felonies are the more severe type of crime and include serious offenses such as murder, rape, armed robbery, and fraud. Convictions for these types of crimes often result in imprisonment for over a year. On the other hand, misdemeanors are less severe crimes, such as petty theft or jaywalking, and they usually result in fines, community service, or imprisonment for less than a year.Due Process and Rights of the AccusedA cornerstone of the criminal justice system in the United States is the concept of “due process.” This ensures that the rights of an individual accused of a crime are protected and that the person is treated fairly and justly by the legal system. Due process guarantees include the right to a fair and public trial, the right to legal counsel, the right to remain silent, and the right to be free from unreasonable searches and seizures.Arizona ExamplesCriminal law is the system of laws that relates to crime. It proscribes conduct perceived as threatening, harmful, or otherwise endangering the property, health, safety, and moral welfare of people. In the state of Arizona, like in all states across the country, criminal law is enforced at both the state and federal levels. Let’s consider a hypothetical Arizona case to illustrate this. Imagine an individual, let’s call him John, has been arrested on charges of armed robbery, which is considered a felony under Arizona law (Arizona Revised Statutes § 13-1904). If found guilty, John could face significant prison time, as armed robbery is considered a serious offense in Arizona. Now let’s imagine another scenario. This time, John has been charged with shoplifting items worth less than $1,000 from a local store. Under Arizona law (Arizona Revised Statutes § 13-1805), this is considered a misdemeanor, not a felony. The penalties for this crime are less severe, often resulting in fines, probation, or short-term imprisonment. These examples illustrate the two broad categories of crimes under criminal law: felonies and misdemeanors. Felonies are more serious crimes that typically involve violence, such as murder, rape, or armed robbery, and they carry stiffer penalties. Misdemeanors are less serious crimes, like petty theft or jaywalking, which usually result in fines or short-term imprisonment. Remember, the purpose of criminal law is not just to punish but also to deter potential criminals, rehabilitate those who have committed crimes, and offer restitution to victims. Each state has its own set of criminal laws, and there are also federal criminal laws that apply across the country. In our following blog posts, we’ll delve into the specifics of different types of crimes, defenses, legal processes, and more, with a focus on Arizona law. Stay tuned to learn more about the fascinating world of criminal law! Please remember, this blog is meant to be informative but does not constitute legal advice. If you or someone you know is dealing with a legal issue, consult with a professional attorney for guidance.In ConclusionCriminal law is a complex and vital field that ensures the safety and security of our society. Its purpose extends beyond punishment, as it also aims to deter potential criminals, rehabilitate those who have committed crimes, and make restitution to victims. This was just a brief introduction to criminal law. In the upcoming days, we’ll be taking a closer look at various types of crimes, defenses, legal processes, and much more. Stay tuned to learn more about the fascinating world of criminal law. Please remember that while this blog is meant to be informative, it does not constitute legal advice. If you or someone you know is dealing with a legal issue, please consult with a professional attorney for guidance.
Awards & Recognition
Our recognition for Phoenix criminal defense defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix criminal defense lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






