.custom-site-footer {
    background-color: #dc743f;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px 0;
    margin-top: auto;
    font-family: 'Poppins', sans-serif !important;
}

.custom-footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif !important;
}

.custom-footer-logo {
    max-width: 210px;
}

.custom-footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif !important;
}

.custom-footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-family: 'Poppins', sans-serif !important;
}

.custom-footer-menu a:hover {
    opacity: 0.8;
}

.custom-footer-separator {
    height: 16px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.custom-footer-copy {
    font-size: 14px;
    margin-top: 30px;
    opacity: 0.8;
    font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {
    .custom-site-footer {
        background-color: #dc743f;
        color: white;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: auto;
        margin-top: auto;
        padding: 15px 0;
        font-family: 'Poppins', sans-serif !important;
    }
    
    .custom-footer-content {
        width: 100%;
        padding: 0 10px;
        font-size: 12px;
        font-family: 'Poppins', sans-serif !important;
    }
    
    .custom-footer-menu {
        gap: 8px;
        flex-wrap: wrap;
        padding: 10px 0;
        font-family: 'Poppins', sans-serif !important;
    }
    
    .custom-footer-separator {
        display: none;
    }
    
    .custom-footer-copy {
        margin-top: 15px;
        font-family: 'Poppins', sans-serif !important;
    }
}