body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f4f4f4;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}#business {
    padding: 2rem;
}

.business-card {
    display: flex;
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.business-card.reverse {
    flex-direction: row-reverse;
}

.business-info {
    flex: 1;
    padding: 2rem;
}

.business-image {
    flex: 1;
    min-height: 300px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.business-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.business-info p {
    color: #666;
}

@media (max-width: 768px) {
    .business-card, .business-card.reverse {
        flex-direction: column;
    }
    
    .business-image {
        min-height: 200px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}