 .footer-container {
    display: flex;
    flex-direction: column; /* I vendos elementet njëri mbi tjetrin */
    align-items: center;    /* Qendëron horizontalisht */
    justify-content: center;
    text-align: center;
    padding: 30px 20px; 
    margin-top: 30px;
    color: white;
    font-family: sans-serif;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;       /* I rregullon nëse ekrani është i vogël (mobile) */
    justify-content: center;
    gap: 20px;             /* Hapësirë e barabartë mes linkeve */
    margin-top: 10px;
}

.footer-links a {
color: #3374c5 !important;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;        /* Ngjyra kur kalon mausin sipër */
    text-decoration: underline;
}

.copyright-text {
    color: #818181;
    font-size: 13px;
} 

