.footer {
    background-color: #333; /* Dark background color */
    color: white; /* White text color */
    padding: 20px; /* Some padding */
    font-family: Arial, sans-serif; /* Font style */
}

.footer-row {
    display: flex;
    justify-content: center; /* Center items horizontally */
    margin-bottom: 10px; /* Space between rows */
}

.footer-row div {
    margin: 0 10px; /* Space between columns */
}

.footer-row:last-child {
    margin-bottom: 0; /* Remove bottom margin for the last row */
}

.footer a {
    color: white; /* Links color */
    text-decoration: none; /* No underline on links */
}

.footer a:hover {
    text-decoration: underline; /* Underline on hover */
}