.footer-area {
    background: #000;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
    font-size: 14px;
}

.footer-area a {
    color: #ffcc00;
    text-decoration: none;
}

.footer-area a:hover {
    text-decoration: underline;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:768px){
    .footer-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
