/* Impressum Page Styles */
.impressum-container {
    margin-top: 120px;
    margin-bottom: 60px;
}

.impressum-content {
    max-width: 100%;
}

.impressum-content h2 {
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.impressum-content h3 {
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.impressum-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.impressum-content a {
    color: #2563eb;
    text-decoration: underline;
}

.impressum-content a:hover {
    color: #1d4ed8;
}

.impressum-content strong {
    font-weight: 600;
    color: #1f2937;
}

.back-to-impressum {
    margin-top: 2rem;
}

/* Cookie Banner Styles */
.cookie-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(31, 41, 55, 0.5);
    z-index: 9998;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 10vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 600px;
    background: #1f2937;
    color: white;
    padding: 2rem 1.5rem;
    z-index: 9999;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    border-radius: 18px;
}

.cookie-banner-content {
    max-width: 500px;
    margin: 0 auto;
}

.cookie-banner-text {
    font-size: 1.1rem;
}

.cookie-banner-link {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: white;
}

.cookie-btn-accept {
    background: #2563eb;
}

.cookie-btn-decline {
    background: #6b7280;
}

.cookie-btn-customize {
    background: #1e40af;
}

.cookie-customize {
    display: none;
    margin-top: 1.5rem;
    background: #374151;
    padding: 1rem;
    border-radius: 10px;
}

.cookie-customize label {
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-save-btn {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .impressum-container {
        margin-top: 100px;
        margin-bottom: 40px;
    }
    
    .cookie-banner {
        width: 95vw;
        padding: 1.5rem 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}
