.site-footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #555;
}