* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
min-height: 100vh;
color: #333;
line-height: 1.6;
padding-bottom: 40px;
}
.header {
background-color: #10767a;
width: 100%;
padding: 15px 0;
position: fixed;
top: 0;
left: 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 1000;
}
.header-content {
display: flex;
align-items: center;
justify-content: center;
padding: 0 20px;
max-width: 1200px;
margin: 0 auto;
}

.logo {
height: 40px;
width: auto;
border-radius: 4px;
}
.main-container {
max-width: 900px;
margin: 100px auto 20px;
background: white;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}
.main-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #10767a, #d63031);
}
.content {
padding: 60px 40px;
}
.page-title {
font-size: 32px;
color: #2d3748;
margin-bottom: 40px;
font-weight: 600;
text-align: center;
}
.section-title {
font-size: 24px;
color: #10767a;
margin: 40px 0 20px 0;
font-weight: 600;
border-bottom: 2px solid #10767a;
padding-bottom: 10px;
}
.section-title:first-of-type {
margin-top: 0;
}
.subsection-title {
font-size: 18px;
color: #2d3748;
margin: 30px 0 15px 0;
font-weight: 600;
}
.content p {
margin-bottom: 15px;
text-align: justify;
}
.content ul {
margin-left: 20px;
margin-bottom: 15px;
}
.content li {
margin-bottom: 8px;
}
.highlight-box {
background-color: #f7fafc;
border-left: 4px solid #10767a;
padding: 20px;
margin: 20px 0;
border-radius: 0 8px 8px 0;
}
.email-link {
color: #10767a;
text-decoration: none;
}
.email-link:hover {
text-decoration: underline;
}

.impressum-content {
border: 2px solid transparent;
background: linear-gradient(#f8f9fa, #f8f9fa) padding-box,
linear-gradient(90deg, #10767a, #d63031) border-box;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
color: #333;
text-align: center;
}
@media (max-width: 768px) {
.main-container {
margin: 80px 10px 10px;
}

.content {
padding: 40px 20px;
}

.page-title {
font-size: 24px;
}

.section-title {
font-size: 20px;
}

.header-content {
padding: 0 15px;
}
}
