body {
    font-family: Arial, sans-serif;
    background-color: #f7e7d7;
    color: #5c2c2c;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.content {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.contact-section {
    padding: 40px;
    text-align: center;
    max-width: 400px;
}

.contact-section h1 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.address, .email, .social-media {
    margin-bottom: 20px;
    font-size: 18px;
}

.email strong {
    font-weight: bold;
    color: #000;
}

.social-media img {
    width: 45px;
    height: 45px;
    vertical-align: middle;
    margin-right: 10px;
}

.social-media p {
    display: inline-block;
    font-size: 18px;
    color: #5c2c2c;
    font-weight: bold;
}

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

.testimonials-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f7e7d7;
    margin-top: 50px;
    gap: 20px;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 65%;
}

.testimonial-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.6;
    color: #5c2c2c;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-column img {
    width: 120px;
    height: auto;
    border: 2px solid #b74d4d;
    border-radius: 5px;
}
/* Mobile Optimierung */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        background-color: #f0f0f0;
        text-align: center;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container, .content {
        width: 100%;
        padding: 0;
    }

    h1, h2, h3 {
        font-size: 1.5em;
    }

    .btn {
        width: 100%;
        padding: 15px;
        font-size: 1em;
    }
}
