#cookie-consent-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 80px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cookie-consent-content h3 {
    margin-top: 0;
    color: #2d3748;
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-consent-content p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.reject-btn {
    background: #e2e8f0;
    color: #4a5568;
}

.reject-btn:hover {
    background: #cbd5e0;
}

.accept-btn {
    background: #F7B632;
    color: white;
}

.accept-btn:hover {
    background: #F7B632;
}

@media (max-width: 768px) {
    #cookie-consent-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}