.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
    font-family: Arial, sans-serif;
}

.cookie-consent.show {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-accept {
    background: #4CAF50;
    color: white;
}

.cookie-learn {
    background: transparent;
    color: #333;
    text-decoration: underline;
}

.cookie-learn:hover {
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; bottom: 0; }
    to { opacity: 1; bottom: 20px; }
}

.cookie-link {
    color: #06c;
    text-decoration: none;
}

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

#vacancy-agree {
    width: 100%;
}