.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 300;
}

/* Footer */
.footer {
    max-width: 1100px;
    margin: 40px auto 20px auto;
    padding: 10px 20px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Cookie-Hinweis-Leiste */
.cookie-hinweis {
    width: 100%;
    background: #fff;
    padding: 18px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

.cookie-hinweis-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-hinweis p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}
.btn-cookie {
    background: #0077ff;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-cookie:hover {
    background: #005fcc;
}

@media (max-width: 600px) {
    .cookie-hinweis-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-hinweis button {
        width: 100%;
    }
}
