* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background: #fff;
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.icon {
    width: 32px;
    height: 32px;
}

h1 {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
        sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2,
h3 {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
        sans-serif;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

p {
    margin-bottom: 12px;
}

.links {
    margin: 20px 0;
}

.links a {
    display: block;
    margin-bottom: 6px;
    color: #000;
}

ul,
ol {
    margin-left: 24px;
    margin-bottom: 12px;
}

li {
    margin-bottom: 6px;
}

.notice {
    border-left: 2px solid #000;
    padding-left: 16px;
    margin: 20px 0;
    font-style: italic;
}

.switzerland {
    color: #ff0000;
}

a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    text-decoration-thickness: 2px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #000;
}

footer .footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

footer p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 480px) {
    body {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .icon {
        width: 28px;
        height: 28px;
    }
}
