body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #fff;
  border-bottom: 2px solid #f57c00;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #f57c00, #ff9800);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-button {
  background-color: #fff;
  color: #f57c00;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
