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

.page {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.8;
}

.header {
    background-color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 139, 0.21);
}

.header__logo {
    font-size: 32px;
    color: #0087ff;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.article__title,
.article__subtitle {
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 16px;
}

.article__intro,
.article__text {
    margin-bottom: 16px;
}

.article__image {
    width: 100%;
    margin: 16px 0;
}

.region-selection {
    margin-top: 32px;
}

.region-selection__title {
    font-weight: bold;
    margin-bottom: 16px;
}

.region-selection__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.region-selection__item {
    flex: 1 1 calc(50% - 16px);
}

.region-selection__link {
    display: block;
    padding: 20px;
    background: linear-gradient(to bottom, #d6e8ff, #0087ff);
    border-radius: 5px;
    text-align: center;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
}

.region-selection__link:hover {
    background: #0087ff;
    color: #ffffff;
}

.footer {
    margin-top: 32px;
    text-align: center;
}

.footer__text {
    color: #666666;
    font-size: 12px;
    margin: 8px 0;
}