:root {
--primary-color: #5f7d95;
--secondary-color: #dbe3e8;
--accent-color: #ff7f50;
--text-color: #333;
--muted-color: #666;
--font-family: 'Arial', sans-serif;
}

body {
font-family: var(--font-family);
margin: 0;
padding: 0;
background-color: #f7f9fb;
color: var(--text-color);
}

.top-banner {
background-color: var(--secondary-color);
text-align: center;
padding: 0.5rem 1rem;
}
.top-banner p {
margin: 0;
}
.top-banner hr.style-four {
border: 0;
height: 1px;
background: var(--primary-color);
margin-top: 0.5rem;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--primary-color);
padding: 1rem 2rem;
color: white;
}
.header .logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav a {
color: white;
text-decoration: none;
margin-left: 1.5rem;
}
.nav a:hover {
text-decoration: underline;
}
.lang-switch button {
background: none;
border: 1px solid white;
color: white;
margin-left: 0.5rem;
cursor: pointer;
padding: 0.2rem 0.5rem;
}
.hero, .hero-sub {
text-align: center;
padding: 4rem 2rem;
background-color: var(--secondary-color);
}
.hero h1, .hero-sub h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero p, .hero-sub p {
font-size: 1.2rem;
margin-bottom: 2rem;
}
.btn-primary, .btn-secondary {
display: inline-block;
text-decoration: none;
padding: 0.7rem 1.5rem;
border-radius: 5px;
color: white;
background-color: var(--accent-color);
transition: background-color 0.3s;
}
.btn-primary:hover, .btn-secondary:hover {
background-color: #e06b3d;
}
.section {
padding: 3rem 2rem;
text-align: center;
}
.angebote-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
padding: 1rem;
}
.angebot-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 300px;
padding: 1rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.angebot-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 1rem;
}
.angebot-card-2 {
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 700px;
padding: 1rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.angebot-card img {
width: 100%;
border-radius: 10px;
margin-bottom: 1rem;
}
.footer {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 1rem;
}
.footer a {
color: white;
margin-left: 1rem;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.card {
background-color: white;
border-radius: 10px;
padding: 2rem;
margin: 2rem auto;
max-width: 600px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.contact-form input, .contact-form textarea, .contact-form select {
width: 100%;
padding: 0.5rem;
margin-top: 0.3rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
.contact-form label {
font-weight: bold;
}
.contact-form button {
cursor: pointer;
}
.listing h2 {
margin-bottom: 2rem;
}
.profile-photo img {
max-width: 200px;
border-radius: 50%;
margin-bottom: 1rem;
}
