#Cookie__banner{
    display: flex;
    width: 98%;
    height: auto;
    padding: 1.375rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 1.25rem;
    background: #f8f9fa;
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.Cookie__banner {
    display: flex;
    width: 98%;
    padding: 1.375rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-radius: 1.25rem;
    background: #f8f9fa;
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.Cookie__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Cookie__col {
    flex: 1;
    padding: 10px;
    min-width: 300px; /* Ensures proper wrapping on smaller screens */
}

.Cookie__buttons {
    display: flex;
    justify-content: center;
}

#Cookie__banner--accept,
#Cookie__banner--decline,
.Cookie__banner--accept,
.Cookie__banner--decline {
    background: #004676;
    color: white;
    border: none;
    padding: 12px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 0.9375rem;
    min-width: auto;
    text-align: center;
    color: white;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: -0.03375rem;
    width: 240px;
}

#Cookie__banner--decline,
.Cookie__banner--decline{
    background: #5E5E5E;
}

#Cookie__banner--accept:hover,
#Cookie__banner--decline:hover,
.Cookie__banner--accept:hover,
.Cookie__banner--decline:hover{
    opacity: 0.85;
}

#Cookie__banner h4,
.Cookie__banner h4 {
    display: flex;
    align-items: center;
    color: #5E5E5E;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 1rem;
}


#Cookie__banner h4 > svg,
.Cookie__banner h4 > svg {
    margin-right: 15px;
}

.Cookie__banner .cookieIcon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

#Cookie__banner p,
.Cookie__banner p{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.0375rem;
    color: #5E5E5E;
}

#Cookie__banner p > a,
.Cookie__banner p > a{
    color: black;
    text-decoration: underline;
}

h3.cookie-policy {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .Cookie-_col {
        flex: 0 0 auto;
        width: 100%;
        padding: 0;
    }
    #Cookie__banner--accept,
    #Cookie__banner--decline,
    .Cookie__banner--accept,
    .Cookie__banner--decline {
        min-width: auto;
        width: 100%;
    }
}