body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #EFDBBF;
    color: #333;
}

header {
    background-color: #E9CB91;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo {
    width: 40%;
}

main {
    padding: 20px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text {
    width: 75%;
}

.side-image {
    width: 20%;
    display: block;
}

section {
    margin-bottom: 20px;
}

footer {
    background-color: #BD8C43;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-top: 10px;
}

.footer-column {
    width: 45%;
    text-align: left;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-top: 10px;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

@media (max-width: 600px) {
    header h1, footer p {
        font-size: 1.2em;
    }

    footer nav ul li {
        display: block;
        margin: 10px 0;
    }

    .footer-contact, .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-column, .footer-left, .footer-right {
        text-align: center;
        width: 100%;
    }

    .side-image {
        display: none;
    }
}
