body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  margin: 0;
  padding: 0;
  padding-top: 70px;
}
header {
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header img {
  height: 35px;
  width: auto;
}
.logo {
  display: block;
  max-width: 150px;
}
.logo img {
  max-height: 35px;
  width: auto;
}
#hero {
  background-color: white;
  padding-top: 2.67rem;
  padding-bottom: 2.67rem;
  margin-top: 2.67rem;
  margin-bottom: 2.67rem;
}
.hero-img img {
  max-width: 100%;
  height: auto;
}
#footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 10px 0;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #9acd32;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}
.back-to-top:hover {
  background-color: #7fbf00;
}
.section-title {
  text-align: center;
  padding: 30px 0;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  font-family: "Dosis", sans-serif;
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
.section-title i {
  font-size: 32px;
  vertical-align: middle;
  color: #03A9F4;
  margin-right: 10px;
}
hr {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 2px solid gray;
}
