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

body {
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

header {
  background-color: #222;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.logo {
  font-size: 24px;
  color: #fff;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.7;
}

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

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.slogan {
  font-size: 24px;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 20px;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #eee;
}

.about {
  padding: 80px;
  text-align: center;
  background-color: #f9f9f9;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.features {
  padding: 80px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.feature-item {
  max-width: 300px;
  margin: 0 auto 40px;
}

.feature-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 16px;
  color: #777;
}

.contact {
  padding: 100px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.contact p {
  font-size: 20px;
  color: #777;
  margin-bottom: 40px;
}

footer {
  background-color: #222;
  padding: 20px;
  text-align: center;
  color: #fff;
}

footer p {
  font-size: 14px;
}
