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

.team-section {
    max-width: 900px;
    margin: 50px auto;
}

.title {
    font-family: 'Georgia', serif;
    font-size: 48px;
    color: #6e8b64;
    margin-bottom: 40px;
	text-align: left;
}

.team-member {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 20px;
	border-bottom: none;
    border: 0px solid #a3252b;
    border-radius: 5px;
    overflow: hidden;
	justify-content: flex-end;
    text-align: center;
}

.member-image img {
    width: 200px;
    height: 160px;
    object-fit: cover;
	display: block;
	margin: 0;
	padding: 0;
}

.member-info {
    padding: 0px;
    flex: 1;
    font-size: 16px;
    line-height: 1,6;
    text-align: left;
	text-align: center;
	height: 160px;
}

.green-bg {
    background-color: #a6b88c;
}

.white-bg {
    background-color: #fff;
}

.member-info a {
    color: #5c2c2c;
    font-weight: bold;
    text-decoration: underline;
}

.member-info a:hover {
    color: #a3252b;
}
/* 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;
    }
}
