.footer-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 15px 20px;
    font-size: 0.75rem;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-right-radius: 30px;
    z-index: 2;
}

.footer-section span {
    color: white;
}

.footer-section a {
    color: white;
    opacity: 0.8;
    margin-left: 12px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .footer-section {
        position: absolute;
        bottom: 0;
        width: calc(100% - 20px);
        background-color: rgba(0,0,0,0.8);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        padding: 10px 10px 10px 10px;
        font-size: 0.7rem;
        display: flex;
        justify-content: center;
        gap: 10px;
        color: #fff;
        flex-wrap: wrap;
        z-index: 2;
    }

    .footer-section span {
        width: 100%;
        text-align: center;
    }

    .footer-section a {
        font-size: 0.8em;
    }
}
