.footer {
    width: 100%;
    background-color: #003366;
    color: #ffffff;
    padding: 2.5rem 1.25rem;
    font-family: Arial, sans-serif;
    border-radius: 8px;
    font-size: 1em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 75rem;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 15.625rem;
    margin-bottom: 1.25rem;
}

.footer-section contact {
    min-width: 15.625rem;
    margin-bottom: 1.25rem;
}

.footer-section h2,
.footer-section h3 {
    margin: 0 0 0.625rem;
    color: #ffffff;
}

.footer_phone:hover {
    color: orange;
    text-decoration: underline;
}

.footer_mail:hover {
    text-decoration: underline;
    color: orange;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 0.3125rem 0;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: orange;
}

/* Circular logo background */
.logo-circle {
    background-color: #ffffff;
    /* light background for contrast */
    max-width: 9.15rem;
    /* fixed square size */
    max-height: 9.15rem;
    border-radius: 60%;
    /* perfect circle */
    display: flex;
    /* center logo inside */
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
    overflow: hidden;
}

.footer-logo {
    max-width: 10rem;
    /* scale logo to fit inside circle */
    max-height: 10rem;
    display: block;
    margin-left: 0.25rem;
    margin-top: 0.1875rem;

}

.motto {
    font-style: italic;
    margin: 0.3125rem 0;
}

.social a {
    margin-right: 0.625rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ffffff;
    padding-top: 0.9375rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    color: orange;
}

.footer-bottom a {
    color:
        #ffffff;
    text-decoration: none;
}

.fa-instagram {
    color: red;
    font-size: 2rem;
}

.fa-instagram:hover {
    color: rgb(176, 60, 60);
}

.social_icons {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;

}

.fa-facebook {
    color: cornflowerblue;
    font-size: 2rem;
}

.fa-facebook:hover {
    color: rgb(91, 121, 177);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social_icons {
        justify-content: center;
    }
}