body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.main-nav a {
  margin-left: 20px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

.main-nav a:hover {
  color: #c2185b;
}

.site-header h1 {
  margin: 0;
}

nav a {
  margin-left: 15px;
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: #fff7fb;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #c2185b;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

footer {
  padding: 20px;
  text-align: center;
  background: #f7eef8;
}