body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container {
    background: rgba(34, 40, 49, 0.97);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 18px;
    padding: 40px 48px 32px 48px;
    margin: 48px 0 32px 0;
    max-width: 800px;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1 {
    color: #f5ba09;
    margin-top: 0;
    margin-bottom: 32px;
    font-size: 2.6em;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}
h2 {
    color: #f5ba09;
    margin-top: 32px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f5ba09;
    padding-bottom: 6px;
    font-size: 1.35em;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
ul, ol {
    margin-left: 0;
    margin-bottom: 18px;
    padding-left: 24px;
    width: 100%;
}
li {
    margin-bottom: 8px;
    font-size: 1.08em;
    line-height: 1.6;
}
p, footer {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
}
p {
    font-size: 1.13em;
    margin-bottom: 18px;
}
footer {
    margin-top: 32px;
    color: #bdbdbd;
    font-size: 0.98em;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .container {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.1em;
    }
}
.contact-for-access {
    margin-top: 24px;
    font-size: 1.05em;
}
.contact-for-access a {
    color: #f5ba09;
    text-decoration: none;
    font-weight: 500;
}
.contact-for-access a:hover {
    text-decoration: underline;
}