
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 99999;
    display: none; 
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eaeaea;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    flex: 1;
}

.cookie-content a {
    color: #2a6fd3;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-content a:hover {
    opacity: 0.75;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    border: none;
    background-color: #2563eb;
    font-family: 'Unbounded';
    color: #ffffff;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap;
}

.cookie-btn-accept:hover {
    background-color: #1d4ed8;
}

.cookie-btn-accept:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }
    
.cookie-content p {
        font-size: 10px;
}


    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn-accept {
        width: 100%;
        max-width: 300px;
            padding: 10px 28px;
                font-size: 10px;
    }
}