* {
    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;
}

.logo {
    font-size: 1.0rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo h2{ 
    margin: 0px;;
color: white;
border-bottom: none;


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

.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: 900px;
    margin: 0 auto;
    padding: 2rem 20px;
}

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

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

h2 {
    color: #333;
    margin: 2.5rem 0 1rem 0;
    font-size: 1.4rem;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
}

.section {
    margin: 2rem 0;
}

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

.disclaimer-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-left: 5px solid #ffc107;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.disclaimer-warning h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disclaimer-warning p {
    color: #856404;
    margin-bottom: 0;
}

.liability-exclusions {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 5px solid #dc3545;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.liability-exclusions h3 {
    color: #721c24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.exclusion-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #721c24;
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
}

.exclusion-list li:last-child {
    border-bottom: none;
}

.exclusion-list li:before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1rem;
}

.software-disclaimer {
    background: #e2e3f1;
    border: 1px solid #c8cae6;
    border-left: 5px solid #2563EB;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.software-disclaimer h3 {
    color: #4c63d2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.software-disclaimer p {
    color: #4c63d2;
    margin-bottom: 0;
}

.acceptance-notice {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-left: 5px solid #17a2b8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.acceptance-notice h3 {
    color: #0c5460;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.acceptance-notice p {
    color: #0c5460;
    margin-bottom: 0;
    font-weight: 500;
}

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

.important-note {
    background: #fff;
    border: 2px solid #dc3545;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.important-note h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.important-note p {
    color: #721c24;
    font-weight: 500;
    font-size: 1rem;
}

.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);
}

@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;
    }
    
    .haftung-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .exclusion-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}