body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 800px;
}

.logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 40px;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        filter: brightness(100%);
    }
    50% {
        filter: brightness(120%);
    }
    100% {
        filter: brightness(100%);
    }
}

h1 {
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.contact-info {
    margin: 40px 0;
    line-height: 1.6;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #666;
}

footer {
    margin-top: 40px;
    color: #666;
    font-size: 14px;
}
