/* Zusätzliche Styles speziell für Impressum */
.impressum-hero {
   height: 60vh;
   min-height: 400px;
    
    background: 
        
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
        url('../NordwaldWerkStadt.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}



.impressum-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.impressum-content {
    padding: 80px 0;
    background-color: var(--light-color);
}

.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.impressum-section {
    margin-bottom: 40px;
}

.impressum-section:last-child {
    margin-bottom: 0;
}

.impressum-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.impressum-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
}

.impressum-section p, 
.impressum-section ul {
    margin-bottom: 15px;
    line-height: 1.7;
}

.impressum-section ul {
    padding-left: 20px;
}

.impressum-section li {
    margin-bottom: 8px;
}

.contact-info-box {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid var(--accent-color);
}

.contact-info-box p {
    margin-bottom: 10px;
}

.contact-info-box i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

.back-to-home {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.back-to-home:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.back-to-home i {
    margin-right: 8px;
}



/* Responsive Anpassungen */
@media (max-width: 768px) {
    .impressum-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .impressum-hero h1 {
        font-size: 2.2rem;
    }
    
    .impressum-container {
        padding: 30px 20px;
    }
    
    .impressum-content {
        padding: 50px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .impressum-hero {
        height: 40vh;
    }
    
    .impressum-hero h1 {
        font-size: 1.8rem;
    }
    
    .impressum-container {
        padding: 25px 15px;
    }
    
    .impressum-section h2 {
        font-size: 1.5rem;
    }
    
    .impressum-section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}