
    .cookie-consent {
        position: fixed;
        bottom: 20px;
        right: 20px;
        max-width: 400px;
        background: #0035ff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        font-family: Arial, sans-serif;
        z-index: 9999;
        display: none;
    }
    .cookie-consent h3 {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .cookie-consent__preferences {
        margin-bottom: 15px;
    }
    .cookie-consent__preference {
        margin-bottom: 5px;
    }
    .cookie-consent__buttons {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .cookie-consent__button {
        padding: 8px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        margin-bottom: 5px;
    }
    .cookie-consent__button--accept {
        background-color: #4CAF50;
        color: white;
    }
    .cookie-consent__button--save {
        background-color: #2196F3;
        color: white;
    }
    .cookie-consent__button--more-info {
        background-color: #f1f1f1;
        color: #333;
        text-decoration: none;
    }
