body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 80%;
    max-width: 600px;
}
.logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}
footer {
    width: 100%;
    position: absolute;
    bottom: 20px;
    text-align: center;
}
.contact-info {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}
.contact-info a {
    text-decoration: none;
    color: inherit;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
