.footer-section{
    background-color: var(--background-color-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-body);
    height: auto;
}


.contact-us-div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 30px;
}


.contact-us-div h1{
    font-size: var(--font-lg);
    letter-spacing: 1px;
    color: var(--text-color-3);
    opacity: 0.3px;
}

.contact-us-div button{
    height: auto;
    border-radius: 50px;
    padding: 15px 20px;
    cursor: pointer;
    font-size: var(--font-xsm);
}



.footer-section span{
    width: 100%;
    max-width: 1500px;
    height: 0.5px;
    background-color: rgb(138, 138, 138);
}


.information-div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    margin: 0 auto;

    width: 100%;
    max-width: 1200px;
}

.information-div > div{
    flex: 1 1 auto;
    min-width: 200px;
    padding: 20px;
    text-align: left;
}

.footer-nav{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a{
    color: white;
    text-decoration: none;
}

.footer-nav a:hover{
    text-decoration: underline;
}

.indiv-div{
    text-align: center;
    width: auto;
}


.indiv-div h2{
    color: var(--text-color-3);
    margin-bottom: 20px;
    font-size: var(--font-sm);
}


.footer-socials{
    height: auto;
    width: 100%;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center; /* Add this */
    flex-shrink: 0; /* Add this */

}

.footer-socials svg{
    width: 30px;
    cursor: pointer;
}


.copyright-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px; /* thin line */
  background-color: rgba(255, 255, 255, 0.3); /* faint white line */
  margin-bottom: 15px; /* space between line and copyright text */
}

.copyright-section {
    width: 100%;
    text-align: center;
    padding: 20px 30px;
}

.copyright-section P{
    margin-bottom: 0px;
}

.footer-font{
    color: var(--text-color-3);
    font-weight: 100;
    line-height: 1;
    font-size: var(--font-sm);
    margin-bottom: 20px;
    width: 100%;
}





/** Phone responseive layouts */
@media (max-width: 620px){
    .contact-us-div{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        margin: 0; /* Add this */
        gap: 0;     /* Add this to collapse spacing between children */
    }

    .contact-us-div h1{
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--text-color-3);
    opacity: 0.3px;
    margin: 20px 20px 0px 20px;
    padding: 0px; /* Add this */
    }

    .contact-us-div button{
    height: auto;
    margin: 20px;
    padding: 10px; /* Add this */
    }

    .information-div > div{
        text-align: center;
    }


    .indiv-div h2{
    color: var(--text-color-3);
    margin-bottom: 20px;
    font-size: var(--font-sm-mobile);
    }

    .footer-font{
        color: var(--text-color-3);
        font-weight: 100;
        font-size: var(--font-xsm-mobile);
    }

    .footer-nav a{
        color: white;
        text-decoration: none;
        font-size: var(--font-sm-mobile);
    }

    .copyright-section p{
        line-height: 2;
    }

}