.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    color: #6c757d;
}

.cookie-text {
    flex: 1;
}

.cookie-banner h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-banner p {
    margin: 0;
    color: #495057;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.cookie-accept-all {
    background: #0066cc;
    color: white;
}

.cookie-accept-all:hover {
    background: #0052a3;
}

.cookie-accept-necessary {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
}

.cookie-accept-necessary:hover {
    background: #e8e8e8;
}

.cookie-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}