.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-media a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-media a:hover {
    background-color: #555;
}

.site-map {
    margin-top: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    grid-rows: 1;
    background-color: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    border-top: 1px solid #444;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}
