body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0 70px 0; /* Add bottom padding to prevent footer overlap */
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

section {
    padding: 2rem;
    margin: 1rem 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 50px; /* Set fixed height */
}

.logo {
    max-height: 60px;
    margin: 1rem 0;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-image {
    max-width: 50%;
    height: auto;
}

.contact-image {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .section-image {
        max-width: 100%;
    }
}