/* Footer structure placeholder */
.footer{
background: rgba(244, 215, 19, 0.5);
}
.footer .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px 0px;
}
.footer .content .copyright{
    width: 50%;
    font-weight: 700;
}

.footer .content .links{
    width: 50%;
    display: flex;
    gap: 20px;
    justify-content: end;

}
.footer .content .links .link{
    text-decoration: none;
    color: #505050;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer .content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 0;
    }

    .footer .content .copyright,
    .footer .content .links {
        width: 100%;
    }

    .footer .content .links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
