body {
    background-color: #000;
    background-image: url("../images/background.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

#logo {
    width: 30%;
    aspect-ratio: 1038 / 275;
    margin-top: 75px;
}

.disclaimer {
    text-align: center;
    font-size: small;
    color: #999;
    padding: 20px;
    margin: 8px auto;
    width: calc(100% - 40px);
    position: relative;
    bottom: 0;
    left: 0;
}

.brand-logo {
    /*display: block;*/
    width: auto;
    height: 40px;
    background-size: 350px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

#links {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 50px;
    top: 0px;
    position: relative;
    width: 100%;
    padding: 25px;
    background-color: #000;
}

#links p {
    margin: 0 50px;
    color: white;
}

#links img {
    width: auto;
    height: auto;
    max-height: 40px;
}

.image-container {
    text-align: center;
    margin: 50px auto 0px auto;
    width: 25%;
    max-width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

.content-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 75%;
    /* Adjusted to match the search bar width */
    margin-top: 25px;
    /* Space below the search bar */
    gap: 100px;
    /* Space between columns */
    margin-bottom: 75px;
    /* Ensure space above the disclaimer or bottom of the page */
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center the content within each column */
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.column h2 {
    margin: 0;
    font-size: 1.5em;
    color: #FFF;
    margin-bottom: 15px;
}

.column p {
    text-align: left;
    margin-top: 20px;
    font-size: 1.25em;
    line-height: 1.5em;
    color: #FFF;
}

.column img {
    width: 75%;
    height: auto;
}

.column a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

@media (max-width: 992px) {
    #logo {
        width: 90%;
        margin-top: 25px;
    }

    .image-container {
        width: calc(100% - 100px);
        margin: 25px auto 0px auto;
    }

    #links, #links img, .brand-logo {
        flex-direction: column;
        padding: 15px;
        margin-bottom: 25px;
    }

    #links img, .brand-logo {
        max-width: 100px;
        margin: 0 auto;
    }

    .content-columns {
        flex-direction: column;
        width: 80%;
        gap: 20px;
        margin-top: 50px;
    }

    .disclaimer {
        text-align: center;
        font-size: x-small;
        color: #999;
        padding: 20px;
        margin: 20px auto;
        width: calc(100% - 40px);
        position: relative;
        bottom: 0;
        left: 0;
    }

    #links img,
    .brand-logo,
    .submit-button {
        height: auto;
        /* Adjust height automatically */
        max-width: 100px;
        /* Adjust maximum width to fit mobile screens */
        border-radius: 4px;
        /* Adjust border-radius if needed */
        margin: 0 auto;
        /* Center images */
    }
}
