/* _content/Europe/FrontEnd/Components/Contact/ContactForm.razor.rz.scp.css */
.contact[b-zy4g2z87ob] {
    padding: 80px 40px;
    text-align: center;
}

    .contact h2[b-zy4g2z87ob] {
        font-size: 32px;
        margin-bottom: 40px;
    }

form[b-zy4g2z87ob] {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[b-zy4g2z87ob], textarea[b-zy4g2z87ob] {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

button[b-zy4g2z87ob] {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    button:hover[b-zy4g2z87ob] {
        background-color: #b4040f;
    }

.success-message[b-zy4g2z87ob] {
    color: green;
    margin-top: 20px;
    font-weight: bold;
}
/* _content/Europe/FrontEnd/Components/CultureSelector.razor.rz.scp.css */
:root[b-0eny85ddcs] {
    --accent: #e04642;
    --text: #e9eef5;
    --line: rgba(255,255,255,.14);
    --menu-bg: #1a1d22;
    --menu-shadow: 0 10px 24px rgba(0,0,0,.45);
    --row-h: 44px; /* consistent nav height */
    --pad-x: 14px;
    --radius: 10px;
}

/* container */
.lang-picker[b-0eny85ddcs] {
    position: relative;
    display: inline-block;
    margin-left: 2px; /* keeps it close to “App” */
    z-index: 1001; /* above other header content */
}

/* trigger button */
.lang-trigger[b-0eny85ddcs] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: var(--row-h);
    padding: 0 calc(var(--pad-x) - 2px);
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    line-height: 1;
    box-sizing: border-box;
    vertical-align: middle;
    transition: color .12s, background .12s, border-color .12s, transform .08s;
}

    .lang-trigger:hover[b-0eny85ddcs] {
        border-color: rgba(224,70,66,.55);
        background: rgba(224,70,66,.10);
        color: #fff;
    }

    .lang-trigger:active[b-0eny85ddcs] {
        transform: translateY(1px);
    }

    .lang-trigger .globe[b-0eny85ddcs] {
        width: 18px;
        height: 18px;
        opacity: .85;
    }

    .lang-trigger .chev[b-0eny85ddcs] {
        transition: transform .15s ease;
        opacity: .9;
    }

    .lang-trigger.open .chev[b-0eny85ddcs] {
        transform: rotate(180deg);
    }

/* little EN/NL/FR chip */
.code-chip[b-0eny85ddcs] {
    font-size: .75rem;
    line-height: 1;

    border-radius: .4rem;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: #fff;
}

.lang-menu[b-0eny85ddcs] {
    position: absolute;
    right: -30px; /* 👈 shift more to the right (was 0) */
    top: calc(100% + 30px);
    min-width: 190px;
    list-style: none;
    margin: 0;
    padding: 6px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.14);
    background: #000; /* solid black */
    box-shadow: 0 10px 24px rgba(0,0,0,.45);
    z-index: 1000;
}

    .lang-menu li[b-0eny85ddcs] {
        margin: 0;
    }

.lang-item[b-0eny85ddcs] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: 9px 10px;
    border: 0;
    background: transparent;
    color: var(--text);
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background .12s ease, color .12s ease;
}

    .lang-item:hover[b-0eny85ddcs] {
        background: rgba(255,255,255,.07);
        color: #fff;
    }

    /* active language row */
    .lang-item.active[b-0eny85ddcs] {
        background: rgba(224,70,66,.14);
        color: #fff;
        position: relative;
    }

        /* checkmark for active */
        .lang-item.active[b-0eny85ddcs]::after {
            content: "✓";
            position: absolute;
            right: 10px;
            font-size: .9rem;
            color: #fff;
        }


.flag svg[b-0eny85ddcs] {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: block;
    box-shadow: 0 0 0 1px rgba(0,0,0,.28) inset;
}

/* align with other nav links */
.nav-links a[b-0eny85ddcs],
.lang-trigger[b-0eny85ddcs] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--row-h);
    padding: 0 var(--pad-x);
    line-height: 1;
}

/* sticky header (with black background) */
.site-header[b-0eny85ddcs] {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000; /* solid black */
    border-bottom: 1px solid rgba(255,255,255,.08);
}
/* _content/Europe/FrontEnd/Components/Features/FeatureSection.razor.rz.scp.css */
.features-section[b-v65qpj0df6] {
    background-color: #f8f9fa;
}

.feature-box[b-v65qpj0df6] {
    transition: transform 0.3s ease;
}

    .feature-box:hover[b-v65qpj0df6] {
        transform: translateY(-5px);
    }

.feature-icon i[b-v65qpj0df6] {
    color: var(--primary);
}
/* _content/Europe/FrontEnd/Components/Features/FeatureSection2.razor.rz.scp.css */
.features[b-ww2qyrysf6] {
    margin-bottom:10px;
    padding: 80px 40px;
    text-align: center; /* center the heading and any text */
}

.features h2[b-ww2qyrysf6] {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight:bold;

}

.features-grid[b-ww2qyrysf6] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1780px; /* 5 * 300px + 4 * 20px */
    padding: 0;
}

.features-grid li[b-ww2qyrysf6] {
    list-style: none;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    min-width: 340px;
    text-align: center;
}

.features-grid .full-width[b-ww2qyrysf6] {
    flex: 1 1 100%; /* span entire row inside grid */
    max-width: 100%; /* no max width limit */
}

.features-grid li:hover[b-ww2qyrysf6] {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
.features-grid[b-ww2qyrysf6] {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

    .features-grid li[b-ww2qyrysf6],
    .features-grid .full-width[b-ww2qyrysf6] {
        min-width: auto;
        width: 100%;
        max-width: none;
        flex: none;
    }
}
/* _content/Europe/FrontEnd/Components/Features/ModuleSection.razor.rz.scp.css */
.modules-section[b-f90q5u7kad] {
    background-color: #fff;
}

.module-box[b-f90q5u7kad] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .module-box:hover[b-f90q5u7kad] {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.module-icon i[b-f90q5u7kad] {
    color: var(--primary);
}
/* _content/Europe/FrontEnd/Components/Footer/FooterBar.razor.rz.scp.css */
.site-footer[b-3wmp3bafn1] {
    background: var(--dark);
    font-size: 14px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

    .site-footer .container[b-3wmp3bafn1] {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

.footer-wrap[b-3wmp3bafn1] {
    display: grid;
    gap: 12px;
    margin-left: 25px;
    margin-right: 25px;
}

.footer-brand[b-3wmp3bafn1] {
    font-weight: 600;
}

    .footer-brand .muted[b-3wmp3bafn1] {
        opacity: .8;
        font-weight: 400;
        margin-left: 6px;
    }

.footer-nav[b-3wmp3bafn1], .footer-links[b-3wmp3bafn1], .footer-legal[b-3wmp3bafn1] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.footer-links[b-3wmp3bafn1] {
    opacity: .9;
}

.footer-legal[b-3wmp3bafn1] {
    opacity: .9;
}

    .footer-legal .sep[b-3wmp3bafn1] {
        opacity: .5;
    }

.site-footer a[b-3wmp3bafn1] {
    color: #cfd6dc;
    text-decoration: none;
    margin: 0;
    transition: color .2s ease;
}

    .site-footer a:hover[b-3wmp3bafn1], .site-footer a:focus[b-3wmp3bafn1] {
        color: #fff;
        outline: none;
    }

@media (min-width: 768px) {
    .footer-wrap[b-3wmp3bafn1] {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand nav"
            "legal legal"
            "links links";
    }

    .footer-brand[b-3wmp3bafn1] {
        grid-area: brand;
    }

    .footer-nav[b-3wmp3bafn1] {
        grid-area: nav;
        justify-content: flex-end;
    }

  
    .footer-legal[b-3wmp3bafn1] {
        grid-area: legal;
    }

    
}
/* _content/Europe/FrontEnd/Components/Header/Header.razor.rz.scp.css */

.site-header[b-yhlnatp65d] {
    background-color: var(--dark);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .site-header .logo[b-yhlnatp65d] {
        font-size: 28px;
        font-weight: bold;
    }

        .site-header .logo span[b-yhlnatp65d] {
            color: var(--primary);
        }

nav ul[b-yhlnatp65d] {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

    nav ul li a[b-yhlnatp65d] {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s;
    }

        nav ul li a:hover[b-yhlnatp65d] {
            color: var(--primary);
        }
/* _content/Europe/FrontEnd/Components/Header/HeaderMetaDate.razor.rz.scp.css */

.site-header[b-dezug5ghgo] {
    background-color: var(--dark);
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .site-header .logo[b-dezug5ghgo] {
        font-size: 28px;
        font-weight: bold;
    }

        .site-header .logo span[b-dezug5ghgo] {
            color: var(--primary);
        }

nav ul[b-dezug5ghgo] {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

    nav ul li a[b-dezug5ghgo] {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s;
    }

        nav ul li a:hover[b-dezug5ghgo] {
            color: var(--primary);
        }
/* _content/Europe/FrontEnd/Components/Hero/HeroCard.razor.rz.scp.css */
.hero[b-x8kei4t5b6] {
    position: relative;
    background: none;
    color: white;
    text-align: center;
    padding: 165px 20px;
    overflow: hidden;
    width: 100%;
}

.here .h1[b-x8kei4t5b6] {
    font-weight: bold;
}

.hero .video-background[b-x8kei4t5b6] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero .video-background iframe[b-x8kei4t5b6] {
        width: 100vw;
        height: 100vh;
        min-width: 100%;
        min-height: 100%;
        pointer-events: none;
    }

.hero .video-overlay[b-x8kei4t5b6] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 1;
}

.hero > *[b-x8kei4t5b6] {
    position: relative;
    z-index: 2;
}

.hero h1[b-x8kei4t5b6] {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p[b-x8kei4t5b6] {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button[b-x8kei4t5b6] {
    background-color: var(--primary);
    color: white;
    padding: 14px 28px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .cta-button:hover[b-x8kei4t5b6] {
        background-color: #b4040f;
    }
/* _content/Europe/FrontEnd/Components/ModuleSupport/Modules.razor.rz.scp.css */
.modules[b-7zr3ipj713] {
    padding: 120px 40px;
    text-align: center;
}

    .modules h2[b-7zr3ipj713] {
        font-size: 32px;
        margin-bottom: 40px;
        font-weight:bold
    }

.module-grid[b-7zr3ipj713] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.module-card[b-7zr3ipj713] {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px 20px;
    flex: 1 1 300px;
    max-width: 320px;
    transition: box-shadow 0.3s;
}

    .module-card:hover[b-7zr3ipj713] {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .module-card h3[b-7zr3ipj713] {
        color: var(--primary);
        margin-bottom: 15px;
    }

    .module-card ul[b-7zr3ipj713] {
        padding-left: 20px;
        text-align: left;
    }
/* _content/Europe/FrontEnd/Components/Subscribe/Abonneer.razor.rz.scp.css */
/*

.cta-section {
    background-color: var(--primary);
    min-height: 300px;
    text-align: center;
    margin-top: 80px;
}

.cta-section a.btn:hover {
    background-color: #f4f4f4;
}
.cta-section a {
    background-color: white;
    color: var(--primary);
    padding: 14px 26px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s;
}*/
.cta[b-b1xqwzu44a] {
    background: var(--primary);
    color: white;
    padding: 120px 80px;
    text-align: center;
}

    .cta h2[b-b1xqwzu44a] {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta p[b-b1xqwzu44a] {
        font-size: 18px;
        margin-bottom: 40px;
    }

.pricing-grid[b-b1xqwzu44a] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-card[b-b1xqwzu44a] {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    .pricing-card:hover[b-b1xqwzu44a] {
        transform: translateY(-5px);
    }

.pro-highlight[b-b1xqwzu44a] {
    border: 2px solid white;
    background-color: #fff5f5;
}
.ultra-highlight[b-b1xqwzu44a] {
    border: 2px solid gold;
    background: linear-gradient(to bottom, #fffbe6, #fff);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}
.pricing-card h3[b-b1xqwzu44a] {
    color: var(--primary);
    margin-bottom: 10px;
}

.pricing-card p[b-b1xqwzu44a] {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-card .per-month[b-b1xqwzu44a] {
    font-size: 16px;
}

.pricing-card ul[b-b1xqwzu44a] {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

    .pricing-card ul li[b-b1xqwzu44a] {
        margin-bottom: 8px;
    }

.cta-button[b-b1xqwzu44a] {
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

    .cta-button:hover[b-b1xqwzu44a] {
        background-color: #b4040f;
    }

@media (max-width: 768px) {
    .pricing-grid[b-b1xqwzu44a] {
        flex-direction: column;
        align-items: center;
    }
}
/* _content/Europe/FrontEnd/Layout/MainLayout.razor.rz.scp.css */
.page[b-kl3vhxn7ih] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kl3vhxn7ih] {
    flex: 1;
}

.sidebar[b-kl3vhxn7ih] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kl3vhxn7ih] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kl3vhxn7ih]  a, .top-row[b-kl3vhxn7ih]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-kl3vhxn7ih]  a:hover, .top-row[b-kl3vhxn7ih]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-kl3vhxn7ih]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-kl3vhxn7ih] {
        justify-content: space-between;
    }

    .top-row[b-kl3vhxn7ih]  a, .top-row[b-kl3vhxn7ih]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-kl3vhxn7ih] {
        flex-direction: row;
    }

    .sidebar[b-kl3vhxn7ih] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kl3vhxn7ih] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-kl3vhxn7ih]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kl3vhxn7ih], article[b-kl3vhxn7ih] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-kl3vhxn7ih] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-kl3vhxn7ih] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
