footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 6px 0; 
    background-color: #1337AA;
    font-size: 12px; 
    text-align: center;
}

footer h3 {
    margin: 0;
    font-family: 'poppins';
    font-weight: 100;
    font-size: 10px;
    color: #fff;
}

.footerDescription {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.policyLinks {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.socialMediaIcons {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    footer {
        position: relative;
    }
    .policyLinks, .socialMediaIcons {
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .policyLinksContainer, .socialMediaContainer {
        padding: 0 3% 0 3%;
    }
    .policyLinks {
        justify-content: flex-start;
    }
    .socialMediaIcons {
        justify-content: flex-end;
    }
}