/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

nav {
  background: #333;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

nav .logo {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav .nav-links {
  list-style: none;
}

nav .nav-links li {
  display: inline;
  margin-left: 20px;
}

nav .nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: #d80517;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 10px 30px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #555;
}

.features {
  padding: 50px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 20px;
}

.feature-item {
  margin-bottom: 20px;
}

footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
