/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    background: #E9EEF4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header mit Logo und Header-Bild */
.site-header {
    width: 100%;
    background: #E9EEF4;
    padding: 20px;
    border-bottom: none;
}

.header-images {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 200px;
    margin-right: 0;
}

.header-img {
    max-height: 200px;
}

/* Wrapper für Sidebar und Content */
.wrapper {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 180px);
}

/* Sidebar Navigation */
.sidebar {
    width: 220px;
    background: #E9EEF4;
    padding: 20px;
    border-right: none;
    flex-shrink: 0;
}

.nav-list {
    list-style: none;
}

.nav-list li {
    margin-bottom: 8px;
}

.nav-list a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 3px;
    transition: background 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
    background: #d0d0d0;
    text-decoration: none;
}

/* Hauptcontent */
.content {
    flex: 1;
    padding: 30px;
    background: #fff;
}

/* Sections */
.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

.section h3 {
    font-size: 15px;
    color: #333;
    margin: 20px 0 10px 0;
}

.section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Service Liste */
.service-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-list li {
    margin-bottom: 8px;
}

/* Footer */
.site-footer {
    background: #E9EEF4;
    padding: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
    
    .nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-list li {
        margin-bottom: 0;
    }
    
    .header-images {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-img {
        margin-top: 10px;
    }
}

/* Impressum spezifisch */
.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.legal-section p {
    margin-bottom: 10px;
}

.placeholder {
    color: #999;
    font-style: italic;
}