* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f5f5f5;
  color: #222;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-image {
  flex: 0 0 40%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-menu {
  flex: 1;
}

@media (max-width: 700px) {
  .hero {
    flex-direction: column;
  }
  .hero-image img {
    max-height: 360px;
  }
}
h1 {
  margin: 16px 0 8px;
}

h2 {
  margin-top: 32px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 4px;
}

p {
  margin: 0;
  color: #555;
}

.links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.links li {
  margin-bottom: 8px;
}

a {
  text-decoration: none;
  color: #2a6df4;
}

a:hover {
  text-decoration: underline;
}

.link {
  display: inline-block;
  margin-top: 12px;
}
