.hero-header {
    background-image: url(https://cdn.prod.website-files.com/658be563adc727c27b27070b/6735092f739a845d024af593_Group%201000005603.png);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    display: flex;
    position: relative;
}

.max-header-cotainer-w {
    max-width: 50rem !important;
}

.object-contain {
    object-fit: contain !important;
}

/* Cookie Consent Modal Styles */
#uc-gdpr-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 9999;
    max-width: 600px;
    animation: slideUp 0.3s ease-out;
}

#uc-gdpr-notification.show {
    display: block !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#uc-cookie-settings-modal {
    z-index: 10000;
}

#uc-cookie-settings-modal.uc-modal-active {
    display: block !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary, #178d72);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary, #178d72);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    #uc-gdpr-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: 100%;
    }
    
    .uc-notification-message {
        flex-direction: column !important;
    }
}