.site-footer {
    width: 100%;
    background: linear-gradient(90deg, #ffe259 0%, #ffa751 50%, #e89b36 100%);
    padding: 32px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-text {
    font-family: 'Oswald', 'Poppins', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

@media (max-width: 575.98px) {
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    .footer-logo {
        width: 56px;
        height: 56px;
    }
    .footer-text {
        font-size: 1.2rem;
    }
}