.fn-footer {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #555;
}

.fn-footer__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.fn-footer__container span {
    font-weight: 300;
}

.fn-footer__top {
    padding: 40px 0;
}

.fn-footer__top .fn-footer__container {
    display: flex;
    justify-content: space-between;
}

.fn-footer__column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.fn-app-badges img {
    height: 35px;
    margin-right: 10px;
}

.fn-social-icons {
    display: flex;
    gap: 10px;
}

.fn-social-icons div {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: background-color 0.2s;
}

.fn-footer__mid {
    padding: 20px 0;
}

.fn-footer__mid .fn-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fn-awards {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.fn-awards-img-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fn-payments {
    font-size: 13px;
}

.fn-payment-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.fn-payment-icons img {
    height: 25px;
    border: 1px solid #eee;
    padding: 2px;
}

.fn-footer__copyright {
    background-color: #00C3B1; 
    color: white;
    padding: 10px 0;
    margin: 17px 0;
    font-size: 12px;
}

.fn-footer__bottom {
    background-color: #00C1B5; 
    color: white;
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 300;
}

.fn-footer__bottom p {
    margin-bottom: 5px;
}

.fn-footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fn-footer-links div {
    color: white;
    text-decoration: none;
}

.fn-footer-links a:hover {
    text-decoration: underline;
}

.fn-footer__column.fn-social p {
    font-size: 22px;
} 

.fn-footer__column.fn-apps p {
    font-size: 22px;
} 

.fn-footer__column.fn-support p a{
    text-decoration: none !important;
    color: #3171C9 !important;
}

@media (max-width: 768px) {
    .fn-footer__top .fn-footer__container,
    .fn-footer__mid .fn-footer__container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .fn-awards {
        flex-direction: column;
        align-items: flex-start;
    }
}