h1, h2, h3, h4, h5, h6 {
  color: var(--orange-dark);
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.25rem;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--orange-light);
  text-shadow: 0 0 6px var(--orange-light);
}

blockquote {
  border-left: 4px solid var(--orange-light);
  padding-left: 1rem;
  font-style: italic;
  color: #555;
}
