.site-footer {
    background: #1b1b1b;
    color: #fff;
    padding: 40px 20px;
    font-family: sans-serif;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.footer-logo h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #f39c12;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
}
.footer-links a:hover {
    color: #f39c12;
}
.footer-social {
    padding: 40px;
}
.footer-social .social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}
.footer-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-social .social-icon {
    width: 28px;
    height: 28px;
    margin-top: 20px;
    fill: #fff;
    transition: fill 0.3s ease;
}
.footer-social a:hover .social-icon {
    fill: #f39c12;
}