* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
}

.header {
    background: #1a1a2e;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


.logo {
    font-size: 1.0rem;
    font-weight: bold;
    display: flex;
    align-items: center;

}
.logo h2{ 
color: white;
border-bottom: none;
margin: 0px;

}
.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 20px;
}

.impressum-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h1 {
    color: #2563EB;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

h2 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #2563EB;
    padding-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: #2563EB;
    margin-bottom: 1rem;
}

.contact-details {
    display: grid;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    width: 20px;
    color: #2563EB;
}

.contact-item a {
    color: #2563EB;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.section {
    margin: 2rem 0;
}

.section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.highlight {
    background: #e3f2fd;
    padding: 1rem;
    border-left: 4px solid #2563EB;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.footer {
    background: #1a1a2e;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
}

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

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Menu geöffnet Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Widerrufsbelehrung spezifische Styles */
.info-box {
    background: #f0f4ff;
    border-left: 4px solid #2563EB;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 5px;
}

.contact-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid #dee2e6;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
}

.warning-box h2 {
    color: #856404;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box i {
    color: #ffc107;
}

.form-template {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.form-content {
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
}

.form-content p {
    margin-bottom: 1rem;
    line-height: 2;
}

.update-date {
    color: #6c757d;
    font-style: italic;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    /* Hamburger Menu anzeigen */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Navigation responsive */
    .nav {
        position: relative;
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        margin-top: 1px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
    }
    
    .container {
        padding: 1rem 10px;
    }
    
    .impressum-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}