* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #f7f4ef;
  color: #333;
}

.hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.section img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  margin: 2rem 0;
}

.notice {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 2rem;
}
