body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
       min-height: 100vh;
    background-image: url('background.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.center-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo {
    max-width: 450px;
    width: 80vw;
    height: auto;
    margin-top: 32px;
}
.links {
    gap: 32px;
    margin-bottom: 20px;
    margin-top: 0px;
	position:absolute;
	top:25px;
	right:0;
}
.links a {
    text-decoration: none;
    color: #333;
    background: #fff;
    padding: 12px 12px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
}
.links a:hover {
    background: #333;
    color: #fff;
}
.page-content {
    max-width: 700px;
    margin: 60px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 40px 28px;
}
.page-content h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #bfa14a;
    letter-spacing: 2px;
}
.page-content p, .page-content address {
    font-size: 1.1rem;
    color: #222;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .page-content {
        padding: 22px 8px;
    }
    .logo {
        max-width: 90vw;
    }
    .links {
        flex-direction: column;
        gap: 18px;
    }
}
