footer{
    padding: 3rem 10%;
    background-color: rgba(0, 0, 0, 0.2);
}
/* Styling for footer logo */
#footer_logo{
    width: 100%;
}

/* Footer navbar styling */
.footer_navbar li{
    list-style: none;
    margin: 0.5rem 0;
}

/* Highlighting navbar section titles */
.footer_navbar li b{
    color: #e18b2a;
}

/* Styling footer links */
.footer_navbar li a{
    text-decoration: none;
    cursor: pointer;
    color: black;
}

/* Social media icons styling */
.social_icon_link_container{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5%;
}

/* Font Awesome social media icon styles */
.fa-brands{
    font-size: 25px;
    color: black;
}

/* Copyright text styling */
#Copyright{
    margin-top: 1rem;
    text-align: center;
    font-family: "Barlow", sans-serif;
}

/* Styling links within the copyright section */
#Copyright a{
    text-decoration: none;
}

/* Responsive design for smaller screens */
@media only screen and (max-width: 500px){
    footer{
        padding: 3rem 2%;
        background-color: rgba(0, 0, 0, 0.2);
    }

    /* Centering logo for smaller screens */
    .Footer_logo_container{
        text-align: center;
    }

    /* Resizing footer logo for smaller devices */
    #footer_logo{
        width: 200px;
    }
}