/* Sticky Footer Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Footer Banner Styles */
.footer-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #2e4257 100%);
    color: #ecf0f1;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent footer from shrinking */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo-container a {
    display: block;
    text-decoration: none;
    line-height: 0; /* Removes any extra space around images */
}

.logo-container:hover {
    transform: translateY(-2px);
    background: #e8f5e8;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.1);
    cursor: pointer;
}

.footer-logo {
    max-height: 40px;
    max-width: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Placeholder logos styling - these will be hidden if images don't exist */
.placeholder-logo {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.footer-text {
    text-align: center;
}

.footer-text p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-banner {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 12px;
    }
    
    .logo-section {
        gap: 20px;
    }
    
    .logo-container {
        padding: 8px 12px;
    }
    
    .footer-logo {
        max-height: 30px;
        max-width: 100px;
    }
    
    .footer-text p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-logo {
        max-height: 25px;
        max-width: 80px;
    }
}