/* Footer Styling */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    margin-bottom: 10px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #ff9800;
}

/* Responsive: Stack on small screens */
@media (max-width: 600px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right a {
        margin-left: 0;
        margin-right: 10px;
    }

    .footer-left {
        margin-bottom: 10px;
    }
}