.footer-bg {
    background-color: #1A3FE6;
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-shape svg {
    height: 56px;
    width: 100%;
    display: block;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #9b9b9b;
    padding-bottom: 16px;
}

.ask-for-help {
    font-size: 20px;
    color: #e8e5e5;
    font-weight: 600;
}

.support-mail, .support-mail a {
    font-size: 16px;
    color: white;
    font-weight: 600;
}

.quick-links-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    transition: all 0.2s ease-in-out;
     transform: scale(1);
}

.footer-link:hover {
    color: #ffffff;
    opacity: 0.8;
    transform: scale(1.1);
}


.footer-copyright {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
    color: white;
}

@media (max-width: 576px) {
    .footer-bg .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .quick-links-title {
        margin-bottom: 10px !important;
    }

    .footer-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}