.minimal-footer {
    padding: 40px 0 0;
    background-color: #fafafa;
    text-align: center;
    margin-top: -5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo-container {
    background-color: white;
    border: 5px solid #4CAF50;
    border-radius: 18px;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-20px);
    position: relative;
    z-index: 2;
    width: 55%;
    max-width: 400px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

.footer-copyright-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #4CAF50;
}

.footer-copyright {
    color: #fff; 
    font-size: 14px;
    padding: 15px 0; 
}

.footer-copyright p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-logo-container {
        width: 80%;
        padding: 25px 50px;
    }
}

@media (max-width: 576px) {
    .footer-logo-container {
        width: 100%;
        padding: 20px 40px;
    }
    
    .footer-logo {
        max-height: 85px;
    }
    
    .minimal-footer {
        padding: 30px 0 0;
    }
}