/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3c5e;
    color: #fff;
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}
#cookie-consent p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 60%;
}
#cookie-consent a {
    color: #ffd700;
    text-decoration: underline;
}
#cookie-consent .cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}
#cookie-consent button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
#cookie-consent .btn-accept {
    background: #28a745;
    color: #fff;
}
#cookie-consent .btn-accept:hover {
    background: #218838;
}
#cookie-consent .btn-decline {
    background: #dc3545;
    color: #fff;
}
#cookie-consent .btn-decline:hover {
    background: #c82333;
}
#cookie-consent .btn-settings {
    background: #6c757d;
    color: #fff;
}
#cookie-consent .btn-settings:hover {
    background: #5a6268;
}
@media (max-width: 768px) {
    #cookie-consent {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    #cookie-consent p {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
    #cookie-consent .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }
}