.static-page .static-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 63, 127, 0.2);
}

body.dark-mode .static-page .static-container {
    background: #1a1a2e;
}

.static-container h1 {
    font-size: 1.8em;
    color: #003f7f;
    margin: 0 0 8px 0;
}

body.dark-mode .static-container h1 {
    color: #003f7f;
}

.static-updated {
    color: #555;
    font-size: 0.9rem;
    margin: 0 0 28px 0;
}

.static-container section {
    margin-bottom: 24px;
}

.static-container h2 {
    font-size: 1.1em;
    color: #003f7f;
    margin: 0 0 10px 0;
}

body.dark-mode .static-container h2 {
    color: #003f7f;
}

.static-container p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    color: #1a1a1a;
}

body.dark-mode .static-container p {
    color: #003f7f;
}

.static-container a {
    color: #007BFF;
}

body.dark-mode .static-container a {
    color: #7eb8f0;
}

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

.static-page .static-footer .home-link {
    color: #003f7f;
}

.static-page .static-footer .home-link:hover {
    color: #0056b3;
}

.static-page .static-footer .home-link svg {
    fill: currentColor;
}

body.dark-mode .static-page .static-footer .home-link {
    color: #003f7f !important;
}

body.dark-mode .static-page .static-footer .home-link:hover {
    color: #0056b3 !important;
}

@media (max-width: 768px) {
    .static-page .static-container {
        margin: 0 16px;
        padding: 32px 24px;
    }
    .static-container h1 {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    .static-page .static-container {
        margin: 0 12px;
        padding: 28px 20px;
    }
    .static-container h1 {
        font-size: 1.35em;
    }
}
