@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #f0f2f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.sitemap-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    color: #0d6efd;
    margin-bottom: 10px;
}

header h1 i {
    margin-right: 10px;
}

header p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.sitemap-list li {
    margin-bottom: 15px;
}

.sitemap-list a {
    display: block;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.sitemap-list a:hover {
    transform: translateX(10px);
    background: #e9ecef;
    border-left-color: #0d6efd;
}

.sitemap-list a i {
    margin-right: 15px;
    color: #0d6efd;
    width: 20px;
    text-align: center;
}

footer {
    margin-top: 40px;
}

.back-button {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: #0b5ed7;
}

.back-button i {
    margin-right: 8px;
}
