/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header {
  background: #1e1e1e;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  text-align: center;
  margin-bottom: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
}

#hero {
  background: #007bff;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

#hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #fff;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

section {
  padding: 40px 0;
  background: #fff;
  margin: 20px 0;
  border-radius: 8px;
}

section h2 {
  margin-bottom: 20px;
  text-align: center;
}

section ul {
  list-style: disc;
  padding-left: 40px;
}

footer {
  background: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
  border-top: 4px solid #007bff;
}
