/* Reset */
* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

:root {
  --fhsection1-bg: #f9f9f9;
  --fhsection1-title: #111;
  --fhsection1-desc: #555;
  --fhsection1-highlight: #11205e;
  --fhsection1-font: 'Arial', sans-serif;
  --fhsection1-max-width: 850px;
  --fhsection1-spacing: 1.5rem;
}

.fhsection1-hero {
  /* background-color: var(--fhsection1-bg); */
  padding: 2.6rem 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fhsection1-hero-content {
  max-width: var(--fhsection1-max-width);
}

.fhsection1-title {
  font-size: 2.8rem;
  color: var(--fhsection1-highlight);
  font-weight: bold;
  font-family: var(--fhsection1-font);
  margin-bottom: var(--fhsection1-spacing);
}

.fhsection1-description {
  font-size: 1.1rem;
  color: var(--fhsection1-desc);
  font-family: var(--fhsection1-font);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 780px) {
  .fhsection1-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .fhsection1-description {
  font-size: 0.98rem;
}
.fhsection1-hero {
  padding: 1.6rem 1.5rem;
}
}
@media (max-width: 580px) {
  .fhsection1-hero {
  padding: 1rem 1.5rem;
}
  .fhsection1-title {
    font-size: 1.5rem;
  }
    .fhsection1-description {
  font-size: 0.78rem;
}
}