.minimal-footer {
    background: var(--main-gradient);
    color: white;
    padding: 1.5rem 1rem 1rem;
    margin-top: auto;
    width: 100%;
    display: block !important;
}
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
}

.copyright-info {
    text-align: center;
    max-width: 600px;
}

.copyright-info p {
    margin: 0 0 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.copyright-info small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .minimal-footer {
        padding: 1rem 0.5rem 0.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.3rem;
        padding-bottom: 0.8rem;
    }
    
    .separator {
        display: none;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .copyright-info small {
        font-size: 0.7rem;
        line-height: 1.1;
    }

}

