/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    color: white;
}

body:not(.home-page) footer {
    color: #111;
}

body.parliamone-page footer {
    color: #fff;
}

.footer-container p {
    margin: 0;
    font-size: 10px;
}

.container {
    align-items: flex-end;
}

.footer-logo {
    font-size: 12px;
}

.footer-email {
    font-size: 12px;
}

/* Responsive footer.css */
@media (max-width: 1024px) {
    footer {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    footer {
        position: relative;
        padding: 20px 0;
        background-color: transparent;
    }
    body.home-page footer {
        position: fixed;
        bottom: 0;
    }
    footer .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    body {
        padding-bottom: 120px;
    }
}
