/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #eff7ff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

/* 필수 표시 마크 */
.required {
    color: red;
}

.text-center-footer {
    justify-content: center;
}

.text-center-footer a {
    text-decoration: none; /* 밑줄 제거 */
    background: none; /* 배경 제거 */
    border: none; /* 테두리 제거 */
    outline: none; /* 포커스 시 테두리 제거 */
    flex: 0 0 0
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.fixed-nav a {
  font-weight: bold;
  font-size: 1rem;
  color: #1e88e5;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.fixed-nav a:hover {
  background-color: #e3f2fd; /* 연한 하늘색 */
  color: #0d47a1;
  cursor: pointer;
}


/* 스크롤 여백 확보 */
body {
  scroll-behavior: smooth;
  padding-top: 30px; /* 네비 높이만큼 여백 */
}


