body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #d79094;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
}

.header {
    width: 100%;
    padding: 35px;
    box-sizing: border-box;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
}

h1 {
    margin: 0;
}

h1 img {
    max-width: 200px; /* Adjust as needed */
    height: auto;
}

.icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end; /* Align icons to the end (bottom) */
    margin-top: 100px; /* Adjust to create space for the header */
}

.icon {
    margin: 4.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon img {
    max-width: 100px;
    height: auto;
}

.print img {
    /*transform: scale(0.8);  Adjust the scale as needed */
    height: 105px;
}

.icon p {
    margin: 10px 0 0;
    font-size: 16px;
    min-height: 24px; /* Ensure all text blocks have the same height */
}

a.email-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    border: solid 2px #000000;
    text-transform: uppercase;
}

a.email-link:hover {
    background-color: #000000;
    color: #ffffff;
    border: solid 2px #000000;
}

/* Footer Styles */
footer {
    background-color: transparent;
    color: #000;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
}

footer .separator {
    display: inline;
}

footer a {
    color: #000000;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    border-bottom: solid 1px #000000;
    text-decoration: none;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    body {
        font-family: 'Roboto', Arial, sans-serif;
        background-color: #d79094;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 80vh;
    }
    .header {
        padding: 15px;
    }
    .icons {
        margin-top: 50px; /* Adjust for mobile */
    }

    .icon {
        margin-right: 1.5rem; /* Smaller margin for mobile */
        margin-top: 1rem;
        margin-left: 1rem;
        margin-bottom: 0;
    }

    div a.email-link {
        margin-top: 3rem;
    }

    footer {
        padding: 10px;
    }

    .footer-content p {
        margin: 5px 0;
    }
    .footer-content p.contact a {
        display: block;
        line-height: 2.5em;
    }

    footer a {
        color: #000000;
        text-decoration: none;
        margin: 0 10px;
    }

    footer a:hover, a:visited {
        text-decoration: none;
        color: #000000;
    }

    footer .separator {
        display: none;
    }
}
