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

header {
  text-align: center;
  color: white;
}

.hero-image {
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
}

.hero-image h1 {
  font-size: 3em;
  margin: 0;
}

.hero-image p {
  font-size: 1.5em;
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.blog-article {
  margin-bottom: 30px;
}

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