h1, h2 {
    margin: 0;
    color: #000;
    font-weight: 300;
}

h1 { font-size: 45px; line-height: 61px; }

p, li {
    font-size: 16px;
    line-height: 22px;
    color: #808080;
    margin: 0;
}

ul { margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: #333; }

img { max-width: 100%; height: auto; }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #F5F7FA;
    color: #808080;
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
}

/* Page */

.page {
    padding: 40px 0;
    background: #F5F7FA;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Block */

.block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 14px;
}

/* FAQ */

.faq {
    margin-top: 32px;
}

.faq > h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 14px;
}

.spoiler {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.spoiler summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spoiler summary::-webkit-details-marker {
    display: none;
}

.spoiler summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 300;
    color: #808080;
    transition: transform 0.2s;
}

.spoiler[open] summary::after {
    transform: rotate(45deg);
}

.spoiler p {
    padding: 0 16px 12px 16px;
    font-size: 15px;
}

/* Donate */

.donate-box {
    text-align: center;
}

.donate-box iframe {
    border: 0;
    background: transparent;
}

/* Contacts */

.contacts p {
    white-space: pre-line;
}

/* Media */

@media (max-width: 600px) {
    .page {
        padding: 30px 0;
    }

    .block {
        padding: 20px;
    }

    .faq > h2 {
        font-size: 20px;
        line-height: 28px;
    }
}