#gdpr-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f2e9df;
    color: #000000;
    padding: 10px 2%;
    z-index: 1000;
    font-family: 'Instrument Sans', Arial, sans-serif;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#gdpr-consent-banner.hidden {
    opacity: 0;
    pointer-events: none;
}

.gdpr-consent-content {
	margin: auto;
    max-width: 1200px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    gap: 20px;
}

.gdpr-text {
    text-align: left;
    flex: 1;
}

.gdpr-text h2 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.gdpr-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.gdpr-consent-buttons {
    display: flex;
    gap: 10px;
}

.gdpr-button {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Instrument Sans', Arial, sans-serif;
    transition: background-color 0.3s, border-color 0.3s;
}

#gdpr-accept {
    background-color: #000000;
    color: #ffffff;
    border: none;
}

#gdpr-accept:hover {
    background-color: #333333;
}

#gdpr-deny {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

#gdpr-deny:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: #333333;
}

@media (max-width: 768px) {
    #gdpr-consent-banner {
        padding: 10px 2%;
    }

    .gdpr-consent-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin: 0 auto;
    }

    .gdpr-consent-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .gdpr-button {
        flex: 1;
        text-align: center;
    }
}