/* Allgemeines Styling */
body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    color: #2C3E50;
    background-color: #F8F9FA;
    text-align: center;
    line-height: 1.6;
}

/* Header */
 header { 
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #2C3E50;
            color: white;
            padding: 1.5em 20px;
            font-size: 1.5em;
            font-weight: 600;
 } 

	/* .small-logo { */
		/* position: absolute; */
		/* left: 20px; */
		/* width: 50px; */
		/* height: 50px; */
	/* } */

/* Cards */
.card {
    background: white;
    padding: 2em;
    margin: 1.5em auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Styling für "Einfach verkaufen" und "Über uns" */
#about {
    background: #ffffff;
    padding: 2.5em;
    margin: 2em auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    text-align: left;
}

#about h2 {
    font-size: 2em;
    color: #2C3E50;
    border-bottom: 3px solid #4A90E2;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
}

#about p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1.5em;
}

/* Team-Section */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 1.8em;
    border-radius: 8px;
    text-align: center;
    width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* CTA-Button */
.cta-button {
    display: inline-block;
    background-color: #4A90E2;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #357ABD;
}

/* Kontakt & Footer */
#contact {
    max-width: 700px;
    margin: 2em auto;
    text-align: left;
}

footer {
    background-color: #ECECEC;
    padding: 1.5em;
    margin-top: 2em;
    font-size: 0.9em;
}
