body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}
.top-bar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 5px;
  font-size: 0.9em;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid #f60;
}
header .logo-title {
  text-align: center;
}
header h1 span {
  color: #f60;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 15px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
nav a:hover {
  color: #f60;
}
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero img {
  width: 100%;
  height: auto;
  filter: brightness(70%);
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero .button {
  display: inline-block;
  background: #f60;
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
}
.hero .button:hover {
  background: #333;
}
main {
  padding: 40px;
}
.features {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
.feature {
  flex: 1;
  padding: 20px;
  margin: 10px;
  border: 1px solid #eee;
  background: #fafafa;
  border-radius: 8px;
  text-align: center;
}
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
  margin-top: 40px;
}
