.cookie-consent {
    position: fixed;
    bottom: 45px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.4;
    border-top: 1px solid #e0e0e0;
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-consent__text {
    flex: 1;
    min-width: 250px;
    color: #333333;
}

.cookie-consent__link {
    color: #036739;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-consent__controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-consent__checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.cookie-consent__input {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    accent-color: #036739;
    margin-right: 20px;
}

.cookie-consent__button {
    background: #036739;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    border-radius: 5px;
    margin-left: 20px;
    padding: 0 24px;
    height: 42px;
}

.cookie-consent__button:hover {
    background: #0b8a4f;
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent__controls {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent__button {
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
    }
}