.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50%;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-banner__content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner a { color: #3498db; }
.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
.btn-accept { background: #27ae60; color: white; }
.btn-reject { background: #e74c3c; color: white; margin-left: 10px; }
