.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e7e7e7;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

.footer-image {
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        min-width: 100%;
    }
    
    .footer-image {
        margin: 1rem 0;
    }
} 