:root {
    --page-bg: #f3c398;
    --brand-green: #2f6f61;
    --brand-green-dark: #25584e;
    --content-width: 1320px;
}

body {
    margin: 0;
    background-color: var(--page-bg);
    color: var(--brand-green);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.page-content {
    max-width: var(--content-width);
    padding-top: 3rem;
    padding-bottom: 0.5rem;
}

.content-panel {
    max-width: 620px;
}

.brand-logo {
    width: min(100%, 410px);
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 8vw, 7rem);
}

.document-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.document-title {
    margin: 0;
    color: var(--brand-green);
    font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--brand-green);
}

.document-link:hover,
.document-link:focus-visible {
    color: var(--brand-green-dark);
}

.document-link-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}

.document-link-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.document-link-text {
    font-family: "Courier New", Courier, monospace;
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.document-link-text small {
    font-size: 0.78em;
    font-weight: 400;
}

.visual-panel {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 655px;
    height: auto;
    display: block;
}

.site-footer {
    padding: 0.25rem 0 2.5rem;
}

.footer-text {
    color: var(--brand-green);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    text-align: center;
}

.footer-text a {
    text-decoration: none;
}

.footer-text a:hover,
.footer-text a:focus-visible {
    color: var(--brand-green-dark);
}

@media (max-width: 991.98px) {
    .page-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .content-panel {
        max-width: none;
    }

    .brand-logo {
        display: block;
        width: min(100%, 310px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2.5rem;
    }

    .visual-panel {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .page-content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .brand-logo {
        width: min(100%, 210px);
        margin-bottom: 2.5rem;
    }

    .document-link {
        align-items: flex-start;
    }

    .site-footer {
        padding-bottom: 1.25rem;
    }

    .footer-text {
        line-height: 1.5;
    }
}