:root {
    --bg: #f6f3c7;
    /* pale yellow */
    --rule: #8fd28b;
    /* green bars */
    --text: #000;
    --link: #0b35ff;
    /* old-school blue links */
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background: var(--bg);
}

.page {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 18px 60px;
}

.top {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 18px;
    align-items: start;
}

.top h1 {
    margin: 0 0 8px;
    font-size: 44px;
    font-weight: 800;
}

.top h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 800;
}

.meta {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.visit {
    margin: 8px 0 0;
    font-size: 24px;
    font-weight: 700;
}

.top-right img {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
}

.rule {
    height: 8px;
    background: var(--rule);
    margin: 18px 0;
}

.announce {
    text-align: center;
    font-size: 18px;
}

.links {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px;
    align-items: start;
}

.social img {
    width: 60px;
    height: 60px;
    display: block;
}

a {
    color: var(--link);
    text-decoration: underline;
    font-weight: 700;
}

.nav {
    display: grid;
    gap: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 18px;
}

.content {
    text-align: center;
    padding: 8px 10px;
}

.mission {
    font-size: 16px;
    line-height: 1.5;
    max-width: 820px;
    margin: 0 auto 20px;
}

.content h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 800;
}

/* Phone layout (stack columns) */
@media (max-width: 900px) {
    .top {
        grid-template-columns: 1fr;
    }

    .links {
        grid-template-columns: 1fr;
    }

    .social {
        display: none;
    }

    .row {
        justify-content: center;
    }
}
.fb-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: #1877f2;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    text-decoration: none;
    border-radius: 8px;
}

.fb-icon:hover {
    filter: brightness(0.95);
}
