* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
}

body {
  color: #111;
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #777;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.hero {
  padding: 120px 60px;
  background: #000;
  color: #d4af37;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  color: #fff;
}

.section {
  padding: 80px 60px;
}

.section.gray {
  background-color: #f5f5f5;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.section ul li {
  margin-bottom: 10px;
}

.footer {
  padding: 40px;
  text-align: center;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #ddd;
}
