/* Google Noto Sans KR 폰트 적용 및 기본 스타일 초기화 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f4f7f6; /* 부드러운 회색 배경 */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 박스를 상단에 정렬 */
    min-height: 100vh;
    color: #333;
}

/* 중앙 안내 박스 */
.info-box {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px; /* 박스의 최대 너비 */
    text-align: left; /* 내부 텍스트는 좌측 정렬 */
    
    /* 애니메이션 적용 */
    animation: slide-down 0.7s ease-out forwards;
}

/* 제목 스타일 */
h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 12px;
}

h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* 본문 텍스트 스타일 */
p {
    font-size: 16px;
    line-height: 1.7; /* 줄 간격 */
    margin-bottom: 20px;
}

/* 링크 스타일 */
a {
    color: #007bff; /* 파란색 링크 */
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 구분선 스타일 */
hr {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 25px 0;
}

/* 슬라이드 다운 애니메이션 정의 */
@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}