body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    padding: 20px;
    background-color: #000;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    color: #fff;
    margin-bottom: 30px;
}

h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

a {
    color: #ccc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #fff;
}

container {
    text-align: left;
    width: 100%;
    max-width: 800px;
}
.last-updated {
    font-size: 0.9em;
    color: #888;
    margin-top: 40px;
    padding-top: 20px;
}

.contact-item {
    padding: 15px 0;
    margin: 15px 0;
}

.contact-item strong {
    color: #fff;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.faq-answer {
    color: #ccc;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-decoration: none;
}

.logo:hover {
    text-decoration: underline;
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #888;
    display: flex;
    width: 100%;
    justify-content: center;
}

.footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer .separator {
    margin: 0 10px;
    color: #666;
}

