footer {
    background: #356cb6;
    color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    height: 80px;
}

.footer-container {
    margin: 0 auto;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.footer-container h1 {
    font-size: 1.5rem;
    margin: 0;
    padding: 1rem 2rem 0.2rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-container p {
    width: 100%;
    text-align: center;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 10px;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .footer-container {
        height: 70px;
        padding: 0 1rem;
    }
    .footer-container h1 {
        font-size: 1.1rem;
        padding: 0.7rem 1rem 0 1rem;
    }
    .footer-container p {
        font-size: 0.9rem;
        bottom: 6px;
    }
}