:root {
    --headbar-height: 60px !important;
    --primary-color: #222C5C;
    --font-family-sans: "Montserrat", sans-serif;
}

.headbar .logo {
    border-right: none;
}

.headbarmenu {
    top: -500px;
    position: absolute;
    display: flex;
    z-index: 999;
    transition: var(--global-transition);
    background-color: var(--background-color);
    box-shadow: var(--container-shadow);
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.headbarmenu.open {
    top: calc(var(--headbar-height) - 10px);
}

.content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding: 0;
    background: white;
    min-height: calc(100% - var(--headbar-height))
}
.bottom-bar * {
    padding-top: 3px!important;
    padding-bottom: 3px !important;

}
.bottom-bar{
    width: 100%;
    background: var(--primary-color);
    position: relative;
    color: white;
    flex-wrap: wrap;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    min-height: unset !important;
    height: auto !important;
    padding: 5px 0 !important;
}

.bottom-bar .col-4, .bottom-bar .col-12, .bottom-bar .col-3 {
    padding: 30px
}

.bottom-bar a {
    color: white;
}

.bottom-bar li {
    font-size: 16px
}

.headbar-nav-button {
    border: none !important;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 17px;
    height: var(--headbar-height);
}

.headbar-reserver-area-button {
    display: block;
}

.headbar-mini-button {
    display: none;
}

.menu-toggle {
    display: none;
}

.container-10 {
    padding: 5% 10%;
    position: relative;
}

.container-20 {
    padding: 5% 20%;
    position: relative;
}

.container-30 {
    padding: 5% 30%;
    position: relative;
}

h2 {
    color: var(--primary-color)
}

p, li {
    font-size: 20px;
}

.white-links a {
    color: white;
}

.main-menu-list {
    list-style-type: none;
}

.main-menu-list a{
    font-size: 15px;
    text-decoration: none !important;
}
.main-menu-list a:hover {
    font-weight: bold;
    color: var(--primary-color);
}
.main-menu-list a::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.2s ease;
}
.main-menu-list a:hover::after {
    opacity: 1;
}

@media (max-width: 800px) {
    .headbarmenu, .headbarmenu.open {
        top: -2000px;
    }

    .headbar-nav-button {
        display: none;
    }

    .headbar-reserved-area-button {
        display: none;
    }

    .headbar-mini-button {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .container-10, .container-20 {
        padding: 5%;
    }

    .container-30 {
        padding: 5% 15%;
    }

    .col-2 {
        border-right: none !important;
        border-left: none !important;
    }

    .col-2 {
        width: 100%;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-banner p {
    margin: 0;
    font-size: 14px;
    max-width: 70%;
}

.cookie-banner a {
    color: white;
}

.cookie-banner .actions {
    display: flex;
    gap: 10px;
}

.hidden {
    display: none;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .cookie-banner p {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .cookie-banner .actions {
        width: 100%;
        justify-content: center;
    }
}
