footer {
    position: relative;
    width: 100%;
    background: var(--blue-light);
    min-height: 150px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    /* Adjust size as needed */
    height: auto;
}

footer .social-icons,
.footer-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

footer .social-icons li a {
    font-size: 2em;
    color: var(--white);
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

footer .social-icons li a:hover {
    transform: translateY(-10px);
}

footer .footer-menu {
    border-top: solid 2px var(--white);
    border-bottom: solid 2px var(--white);
}

footer .footer-menu li a {
    font-size: 1.2em;
    color: var(--white);
    margin: 0 10px;
    display: inline-block;
}

footer .footer-menu li a:hover {
    opacity: 1;
    color: var(--gold);
}

footer p {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

footer p a {
    color: var(--gold);
    font-weight: 500;
}

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../../assets/images/footer-items/wave.webp?v=3.0);
    background-size: 1000px 100px;
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave 3s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
}

@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }

    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }

    100% {
        background-position-x: 1000px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    /* Align items at the start */
    width: 100%;
    font-size: 15px;
}

.info-address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align content at the start */
    gap: 15px;
    width: 100%;
    /* Make sure both elements take full width */
    padding: 10px;
    /* Add some padding for better spacing */
    max-width: 800px;
    box-sizing: border-box;
    flex-direction: row;
}

.info-email {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align content at the start */
    gap: 15px;
    width: 100%;
    /* Make sure both elements take full width */
    padding: 10px;
    /* Add some padding for better spacing */
    box-sizing: border-box;
    flex-direction: row;
}

.contact-info i {
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Fixed width */
    height: 40px;
    /* Fixed height */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.info-email p,
.info-address p {
    margin: 0;
    text-align: start;
    word-wrap: break-word;
    /* Ensure text wraps inside the container */
    flex-grow: 1;
    /* Ensure text takes available space */
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    overflow: hidden;
}

.address-column h3,
.contact-info h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    color: var(--gold);
}