.gx-cookie-consent {
    position: fixed;
    z-index: 100000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    box-sizing: border-box;
    transform: none !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: #001A3A;
    box-shadow: 0 18px 48px rgba(0, 26, 58, 0.28);
    color: #FFFFFF;
    font-family: Inter, Arial, sans-serif;
}
.gx-cookie-consent[hidden] { display: none !important; }
.gx-cookie-consent-copy { min-width: 0; }
.gx-cookie-consent-title {
    margin: 0 0 5px;
    color: #FFFFFF;
    font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}
.gx-cookie-consent-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.84rem;
    line-height: 1.5;
}
.gx-cookie-consent-text a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gx-cookie-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}
.gx-cookie-consent-button {
    min-height: 44px;
    padding: 10px 16px;
    border: 2px solid #FFFFFF;
    border-radius: 7px;
    background: transparent;
    color: #FFFFFF;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}
.gx-cookie-consent-button:hover,
.gx-cookie-consent-button:focus-visible {
    background: #FFFFFF;
    color: #001A3A;
}
.gx-cookie-consent-button:focus-visible,
.gx-cookie-settings-link:focus-visible {
    outline: 3px solid #FFFFFF;
    outline-offset: 3px;
}
.gx-cookie-settings-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
@media (max-width: 680px) {
    .gx-cookie-consent {
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: block;
        padding: 16px;
    }
    .gx-cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 14px;
    }
    .gx-cookie-consent-button {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}
@media (max-width: 340px) {
    .gx-cookie-consent-actions { grid-template-columns: 1fr; }
}
