.preference {
    display: flex;
    gap: 10px;
}

.value_privacy {
    font-size: 16px;
}

.language_preference {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.consent-banner-1 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #053c61;
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.consent-banner-2 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.accept {
    background-color: white;
    color: #053c61;
    border: none;
    padding: 6px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.accept:hover {
    background-color: #d1b027;
    color: white;
}

.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
}

.decline:hover {
    background-color: white;
    color: #053c61;
}
