/* Reset */
* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

:root {
  --order-section1-bg: #f9f9f9;
  --order-section1-title: #111;
  --order-section1-desc: #555;
  --order-section1-highlight: #bd976d;
  --order-section1-font:'Arial', sans-serif;
  --order-section1-max-width: 850px;
  --order-section1-spacing: 1.5rem;
}

.order-section1-hero {
  /* background-color: var(--order-section1-bg); */
  padding: 2.6rem 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-section1-hero-content {
  max-width: var(--order-section1-max-width);
}

.order-section1-title {
  font-size: 2.8rem;
  color: var(--order-section1-highlight);
  font-weight: bold;
  font-family: var(--order-section1-font);
  margin-bottom: var(--order-section1-spacing);
}

.order-section1-description {
  font-size: 1.1rem;
  color: var(--order-section1-desc);
  font-family: var(--order-section1-font);
  line-height: 1.8;
}

@media (max-width: 500px){
  .order-section1-title {
    font-size: 1.8rem;
  }
}
