body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: auto; /* Changed from hidden to allow footer visibility */
}

.splash-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
    background: url('background.jpg') no-repeat center center / cover;
    -webkit-filter: grayscale(75%);
    filter: grayscale(75%);
    border: 10px solid white;
}

.centered-logo {
    max-width: 80%;
    height: auto;
}

/* New footer styles */
.contact-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px 30px 20px; /* Top Right Bottom Left - added 10px to bottom padding */
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
    z-index: 1000;
}

.contact-info {
    font-family: Arial, sans-serif; /* Matching the site's font - adjust as needed */
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.contact-info address {
    font-style: normal;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}