.site-footer {
    flex-shrink: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    background-color: #104788;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-section {
    background-color: #104788;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.contact-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.contact-container h2 {
    text-align: center;
    color: #104788;
    margin-bottom: 30px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-item h3 {
    color: #104788;
    margin-bottom: 5px;
}

.contact-item p {
    margin-top: 0;
    margin-bottom: 10px; 
    color: #333;
}

.contact-item a {
    color: #104788;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #67c2ef;
}

.email-contact {
    font-weight: 600;
}

.email-contact a{
    font-weight: 300;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        background-color: #ffffff; 
    }

    .contact-container {
        padding: 20px;
        box-shadow: none;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .logo {
        order: 1;
        margin-right: 0;
    }

    .hamburger {
        display: block;
        order: 2;
        font-size: 2em;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
        z-index: 1001;
    }

    nav {
        display: none;
        width: 100%;
        position: absolute; 
        top: 60px; 
        left: 0;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: left;
        padding: 10px;
        margin: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
        width: 100%;
        text-align: left;
    }

    .site-footer {
        position: relative; 
        bottom: auto;
        padding: 20px;
        flex-direction: column;
        text-align: center;
        margin-top: 2em;
    }

    .footer-content {
        flex-direction: column;
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .footer-item {
        margin: 10px 0;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
    }

    .social-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 8em;
    }

    .nav-links {
        font-size: 0.9em;
    }

    .social-links img {
        width: 30px;
    }

    .contact-container h2 {
        font-size: 1.5em;
    }
}