.footer {
    margin-top: 5px;
    padding: 20px 10px;
    background: rgb(0 35 90);
    color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    border-top: 1px white solid;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffccff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}