* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* Hero Section */
.hero-section {
  padding: 20px;
  margin: 10px auto;
  text-align: center;
  max-width: 800px;
}

.hero-img {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 150px;
  height: auto;
}

.hero-section h1 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 19px;
  font-weight: 300;
  color: #555;
}