body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    background: #fff;
    max-width: 600px;
    margin: auto;
    margin-top: 10vh;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 15px;
}

p {
    color: #555;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background-color: #005baa;
    color: white;
    padding: 12px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #004080;
}

footer {
    text-align: right;
    position: fixed;
    right: 15px;
    bottom: 15px;
}

footer img {
    max-width: 350px;
    height: auto;
}
