body {
  background-color: Lavender;
  color: black;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-family: serif; /* 브라우저 기본 폰트 (보통 Times New Roman) */
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
}

h1 {
  font-weight: bold;
  color: black;
}

a {
  color: #4b0082; /* 진한 보라색 */
  text-decoration: underline; /* 밑줄 표시 */
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center; /* 중앙 수평 정렬 */
}

.header img {
  max-width: 260px;
  margin-left: 20px;
  margin-top: 50px; /* 로고를 한 줄만큼 아래로 내림 */
}

ul {
  margin-left: 20px;
}

hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #ccc;
}

.contact {
  font-size: 0.95em;
}
