#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(20, 33, 61, 0.95);
    color: #fff;
    padding: 18px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Noto Sans', Arial, sans-serif;
}

#cookie-consent-banner .cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    #cookie-consent-banner .cookie-consent-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

#cookie-consent-banner h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-banner a {
    color: #8dd7ff;
    text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#cookie-consent-banner .cookie-accept-btn {
    background: #00bfa5;
    border: none;
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#cookie-consent-banner .cookie-accept-btn:hover {
    background: #00a58f;
}
