footer.site-footer {
    color: #1b1b1b;
    padding: 40px 20px 20px;
    background: #ffffff;
    border-top: 1px solid #ececec;
    margin-top: 5px;
    direction: rtl;
    position: relative;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-column {
    flex: 1 1 250px;
    text-align: right;
}

.footer-column h4 {
      font-size: 24px;
    color: #333;
    font-weight: normal;
    margin: 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #1b1b1b;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--linkcolor);
}

.social-link {
    color: #1b1b1b;
    text-decoration: none;
    margin-left: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--linkcolor);
}

.footer-copyright {
    width: 100%;
    text-align: right;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
    font-size: 14px;
    color: #555;
    font-family: yekan, var(--font-titels), sans-serif !important;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
    }
    
    footer.site-footer {
        padding: 30px 15px 20px;
    }
}