@media (max-width: 768px) {
    .server-box {
        width: 90%;
    }
}
        /* استایل‌های کلی فوتر */
        .vizak-footer {
            background-color: #1b1b1b; /* رنگ پس‌زمینه هماهنگ با ویدا سرور */
            color: white;
            padding: 40px 20px;
            font-family: 'Vazirmatn', sans-serif;
        }
        .vizak-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .vizak-column {
            flex: 1;
            min-width: 200px;
            margin: 10px;
        }
        .vizak-column h3 {
            font-size: 1.2em;
            margin-bottom: 15px;
            color: #f1c40f; /* رنگ زرد هماهنگ */
        }
        .vizak-column ul {
            list-style: none;
            padding: 0;
        }
        .vizak-column ul li {
            margin-bottom: 10px;
        }
        .vizak-column ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        .vizak-column ul li a:hover {
            color: #f1c40f;
        }

        /* خط جداکننده */
        .vizak-divider {
            width: 100%;
            height: 1px;
            background-color: #444;
            margin: 30px 0;
        }

        /* بخش درباره و لوگوها */
        .vizak-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .vizak-about {
            flex: 2;
            text-align: right;
            font-size: 0.9em;
            line-height: 1.8;
        }
        .vizak-logos {
            flex: 1;
            display: flex;
            justify-content: flex-start;
            gap: 15px;
            flex-wrap: wrap;
        }
        .vizak-logos img {
            width: 80px;
            height: auto;
            border-radius: 5px;
        }

        /* واکنش‌گرایی */
        @media (max-width: 768px) {
            .vizak-container {
                flex-direction: column;
                align-items: center;
            }
            .vizak-bottom {
                flex-direction: column;
                text-align: center;
            }
            .vizak-about {
                text-align: center;
                margin-bottom: 20px;
            }
            .vizak-logos {
                justify-content: center;
            }
        }