.site-footer {
    background-color: #1A2238;
    padding: 60px 0 40px 0;
    text-align: center;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #F89b42;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F89b42;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 155, 66, 0.4);
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #F89b42;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #5d6679;
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .footer-links {
        gap: 20px;
        flex-direction: column;
    }
}