* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e30b14;
  padding: 10px 20px;
  color: white;
}
.logo {
  font-size: 1.5em;
  background-color: white;
  font-weight: bold;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  font-size: 4.5em;
  cursor: pointer;
}
.hero {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}
.column {
  float: left;
  width: 33.33%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}
footer {
  text-align: center;
  padding: 10px;
  background: #e30b14;
  color: white;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #ef7d12;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 150px;
    padding: 10px;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}