body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

.hero-section {
  background: linear-gradient(90deg, #f76300, #cc1f1f);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero-section .tagline {
  font-size: 1.5em;
  margin: 10px 0 20px;
}

.cta-button {
  background: #ffa000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin-top: 20px;
}

.features-section {
  background: #f9f9f9;
  padding: 40px 20px;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  padding: 8px 0;
  font-size: 1.1em;
}

.contact-section {
  background: #fff;
  padding: 40px 20px;
}

.contact-section a {
  color: #cc1f1f;
  text-decoration: none;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #cc1f1f;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

.top-bar {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.top-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #cc1f1f;
  font-weight: bold;
}