:root {
    --blue: #0057d9;
    --dark-blue: #063b8f;
    --text: #10356f;
    --muted: #566581;
    --border: #dce7f6;
    --bg: #f7fbff;
    --white: #fff;
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 87, 217, 0.3);
    z-index: 1200;
    transition: background 0.2s ease, transform 0.2s ease;
}

.scroll-top-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.scroll-top-btn.visible {
    display: flex;
}

* {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family:"Manrope",sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.topbar {
    font-size: 14px;
    color: var(--blue);
    border-bottom: 1px solid #e5eefb;
}

.topbar-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding: 10px 0;
}

.topbar a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.topbar-links {
    margin-left: auto;
}

.navbar {
    background: #fff;
}

.nav-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 1 260px;
    min-width: 0;
}

.logo img {
    display: block;
    width: clamp(150px, 18vw, 240px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    min-width: 0;
}

.menu li {
    cursor: pointer;
}

.menu-mobile-logo {
    display: none;
}

.menu .active {
    color: var(--blue);
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.burger-menu {
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--blue);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible + .burger-menu {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.nav-overlay {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-search {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    max-width: 310px;
}

.nav-search input {
    width: 0;
    min-width: 0;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: var(--text);
    background: #f7fbff;
    opacity: 0;
    transition: width 0.24s ease, padding 0.24s ease, border-color 0.24s ease, opacity 0.18s ease;
}

.nav-search.is-open input {
    width: 240px;
    padding: 0 16px;
    border: 1px solid var(--border);
    opacity: 1;
}

.nav-search input:focus {
    border-color: var(--blue);
    outline: none;
}

.circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--blue);
}


.btn {
    border: none;
    background: var(--blue);
    color: white;
    border-radius: 14px;
    padding: 15px 30px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 87, 217, 0.25);
    white-space: nowrap;
}
footer {
    background: linear-gradient(90deg, #0057d9, #0044b8);
    color: white;
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    padding: 34px 0;
}

.footer-grid div {
    border-right: 1px solid rgba(255,255,255,0.25);
    padding-right: 30px;
}

.footer-grid div:last-child {
    border-right: none;
}

.footer-grid i {
    font-size: 24px;
}
@media (max-width: 1180px) {

    .topbar{
        display: none;
    }

    .contact-btn{
        display: none;
    }
    .nav-inner {
        flex-wrap: wrap;
    }

    .logo {
        flex-basis: 220px;
    }

    .menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 22px;
    }
}

@media (max-width: 950px) {
    .topbar-inner {
        justify-content: center;
        gap: 12px 20px;
        text-align: center;
    }

    .topbar-links {
        margin-left: 0;
    }

    .nav-inner {
        justify-content: space-between;
        text-align: left;
        flex-wrap: wrap;
    }

    .logo {
        max-width: calc(100% - 120px);
        flex-basis: auto;
        order: 1;
    }

    .logo img {
        width: clamp(150px, 38vw, 220px);
    }

    .burger-menu {
        display: inline-flex;
        order: 2;
        flex: 0 0 46px;
    }

    .nav-toggle:checked + .burger-menu span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .burger-menu span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .burger-menu span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-actions {
        display: none;
    }

    .menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -340px;
        z-index: 1200;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        margin: 0;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        padding: 8px 8px 24px;
        background: white;
        border: none;
        border-radius: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        text-align: left;
        transition: right 0.3s ease;
    }

    .nav-toggle:checked ~ .menu {
        right: 0;
    }

    .menu-mobile-logo {
        display: block;
        text-align: center;
        padding: 10px 8px 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--border);
        cursor: default;
    }

    .menu-mobile-logo img {
        display: inline-block;
        width: clamp(140px, 40vw, 200px);
        height: auto;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1100;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .nav-toggle:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .menu li {
        flex: none;
        padding: 13px 10px;
        border-bottom: 1px solid #eef3fb;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .menu li:last-child {
        border-bottom: none;
    }

    /* Mobile mega menu toggle button visible */
    .mega-toggle {
        display: inline-flex;
        align-items: center;
    }

    /* Mega menu becomes a vertical accordion on mobile */
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 8px 0 0 10px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        order: 10;
        flex-basis: 100%;
    }

    .has-mega:hover .mega-menu {
        display: none;
    }

    .has-mega.is-open .mega-menu {
        display: grid;
    }

    .mega-col {
        padding: 10px 0;
        border-bottom: 1px solid #eef3fb;
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-col h4 {
        font-size: 13px;
    }

    .mega-highlight {
        background: transparent;
        border: none;
        padding: 0;
    }

    /* Reveal contact button below open mobile menu */
    .nav-toggle:checked ~ .nav-actions {
        display: flex;
        order: 5;
        width: 100%;
        justify-content: center;
        padding: 10px 0 2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding: 0 0 24px;
    }

    .footer-grid div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 700px) {
    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .topbar-links {
        margin-left: 0;
    }

    .logo img {
        width: clamp(140px, 46vw, 200px);
    }

    .contact-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .nav-search {
        width: 100%;
        max-width: none;
    }

    .nav-search.is-open input {
        width: calc(100% - 54px);
    }
}

@media (max-width: 460px) {
    .topbar {
        font-size: 13px;
    }

    .topbar-inner {
        gap: 6px;
    }

    .nav-inner {
        gap: 10px;
    }

    .logo img {
        width: clamp(130px, 52vw, 180px);
    }

    .circle {
        width: 42px;
        height: 42px;
    }

    .contact-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer-contact-cta {
        padding: 20px 18px;
    }

    .footer-contact-cta a {
        padding: 12px 28px;
    }
}
.site-footer {
    background: #fff;
    color: #10356f;
}

.footer-contact-cta {
    width: min(1040px, 92%);
    margin: 0 auto 24px;
    padding: 28px 36px;
    background: #f3f8ff;
    border: 1px solid #dce7f6;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 22px;
    align-items: center;
}

.footer-contact-cta i {
    font-size: 42px;
    color: #0057d9;
}

.footer-contact-cta h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #0050c8;
}

.footer-contact-cta p {
    margin: 0;
    line-height: 1.6;
    color: #405985;
}

.footer-contact-cta a {
    background: #0057d9;
    color: #fff;
    padding: 14px 54px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
}

.footer-blue {
    background: linear-gradient(90deg, #0046c7, #0057d9);
    color: #fff;
}

.footer-blue-inner {
    width: min(1040px, 92%);
    margin: 0 auto;
    padding: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer-info-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    border-right: 1px solid rgba(255,255,255,.25);
}

.footer-info-item:last-child {
    border-right: none;
}

.footer-info-item i {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.footer-info-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color:white;
}
footer a:hover{
    color:white;
}
.footer-info-item p {
    margin: 0 0 6px;
    font-size: 14px;
    opacity: .9;
}

.footer-info-item strong,
.footer-info-item a {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.footer-logos {
    width: min(1040px, 92%);
    margin: 0 auto;
    padding: 34px 0 38px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.footer-logos img {
    max-height: 54px;
    max-width: 150px;
    object-fit: contain;
}

@media (max-width: 850px) {
    .footer-contact-cta,
    .footer-blue-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info-item {
        border-right: none;
        grid-template-columns: 1fr;
    }

    .footer-info-item i {
        margin: 0 auto;
    }

    .footer-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.page-breadcrumb{

    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    padding:10px 16px;

    background:#fff;
    border:1px solid #dbe7f6;
    border-radius:10px;

    font-size:14px;
    line-height:1;
    margin-bottom:24px;
}

.page-breadcrumb a{
    color:#0b4dbb;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.page-breadcrumb a:hover{
    color:#083a8c;
}

.page-breadcrumb span{
    color:#566581;
}

.page-breadcrumb strong{
    color:#1e293b;
    font-weight:700;
}

@media (max-width:768px){
    .menu { flex: 1; justify-content: flex-start; gap: 5px;overflow-x:hidden }
    .page-breadcrumb{
        border-radius:12px;
        line-height:1.4;
    }

}


.navbar {

    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow .2s ease;
}

.navbar.is-sticky {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    position: fixed;
    width:100%;
}

.contact-btn {
    padding: 16px 32px;
    border-radius: 999px;
    background: #004cbd;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}


.has-mega {
    position: relative;
}

.menu a{

    text-decoration: none;

}

.has-mega > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.has-mega > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1120px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid #dbe7f6;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 49, 120, .14);
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 999;
}



.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-col h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #003b8f;
    font-weight: 800;
    padding-bottom: 10px;
    border-bottom: 2px solid #e6eef9;
}

.mega-col a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.25;
    transition: .2s ease;
}

.mega-col a:hover {
    background: #eef6ff;
    color: #004cbd;
    transform: translateX(4px);
}

.mega-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin: 10px 0 2px;
    padding: 8px 10px;
    border: 0;
    background: none;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
}

.mega-sub-toggle i {
    font-size: 10px;
    transition: transform .2s ease;
}

.mega-sub-toggle.is-open i {
    transform: rotate(180deg);
}

.mega-sub-list {
    display: none;
    flex-direction: column;
}

.mega-sub-toggle.is-open + .mega-sub-list {
    display: flex;
}

.mega-sub-list a {
    padding-left: 22px;
    font-size: 13px;
    font-weight: 500;
}

.mega-highlight {
    background: linear-gradient(180deg, #f4f9ff, #ffffff);
    border: 1px solid #e1ecfa;
    border-radius: 16px;
    padding: 18px;
}

/* Mobile mega toggle button — hidden on desktop */
.mega-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--blue);
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.has-mega.is-open > .mega-toggle {
    transform: rotate(180deg);
}

.nav-inner { gap: 42px; min-height: 96px; }
.menu { flex: 1; justify-content: flex-start; gap: 42px; }
.logo img { width: 245px; }

@media (max-width: 950px) {
    .has-mega:hover .mega-menu {
        transform: none;
    }
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-inner {
        min-height: 74px;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .logo {
        max-width: calc(100% - 62px);
        flex: 1 1 auto;
    }

    .logo img {
        width: clamp(150px, 46vw, 220px);
    }

    .burger-menu {
        display: inline-flex;
        position: relative;
        z-index: 1301;
        flex: 0 0 46px;
        margin-left: auto;
    }

    .nav-toggle:checked + .burger-menu {
        position: fixed;
        top: 16px;
        right: 16px;
        border-color: #dbe7f6;
        box-shadow: 0 10px 28px rgba(0, 49, 120, .18);
    }

    .nav-actions,
    .nav-toggle:checked ~ .nav-actions {
        display: none !important;
    }

    .menu {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1300;
        display: flex;
        width: min(380px, 88vw);
        height: 100vh;
        height: 100dvh;
        margin: 0;
        padding: 18px 18px 28px;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: -18px 0 42px rgba(0, 29, 74, .22);
        text-align: left;
        transform: translateX(105%);
        transition: transform .28s ease;
    }

    .nav-toggle:checked ~ .menu {
        right: 0;
        transform: translateX(0);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1250;
        background: rgba(6, 24, 57, .48);
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .nav-toggle:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    .menu-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 58px;
        margin: 0 0 8px;
        padding: 0 58px 16px 0;
        border-bottom: 1px solid #e5eefb;
        cursor: default;
    }

    .menu-mobile-logo img {
        width: clamp(145px, 44vw, 205px);
        height: auto;
    }

    .menu li {
        width: 100%;
        min-height: 50px;
        padding: 12px 2px;
        border-bottom: 1px solid #eef3fb;
        color: #0b2d66;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        flex-wrap: wrap;
        gap: 8px;
    }

    .menu li:last-child {
        border-bottom: 0;
    }

    .menu a {
        color: #0b2d66;
        text-decoration: none;
    }

    .has-mega > a {
        flex: 1 1 auto;
        min-width: 0;
    }

    .has-mega > a::after {
        display: none;
    }

    .mega-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        background: #eef5ff;
        color: var(--blue);
    }

    .menu .mega-menu {
        position: static;
        display: none;
        width: 100%;
        flex: 0 0 100%;
        grid-template-columns: 1fr;
        gap: 0;
        order: 10;
        margin-top: 8px;
        padding: 8px 0;
        background: #f7fbff;
        border: 1px solid #e5eefb;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .menu .has-mega:hover .mega-menu {
        display: none;
    }

    .menu .has-mega.is-open .mega-menu,
    .menu .has-mega.is-open:hover .mega-menu {
        display: grid;
    }

    .mega-col {
        gap: 4px;
        padding: 12px;
        border-bottom: 1px solid #e5eefb;
    }

    .mega-col:last-child {
        border-bottom: 0;
    }

    .mega-col h4 {
        margin: 0 0 8px;
        padding-bottom: 8px;
        font-size: 13px;
        line-height: 1.35;
    }

    .mega-col a {
        padding: 8px 0;
        border-radius: 0;
        font-size: 14px;
        line-height: 1.35;
    }

    .mega-col a:hover {
        background: transparent;
        transform: none;
    }

    .mega-highlight {
        background: transparent;
        border: 0;
        border-radius: 0;
    }
}

@media (max-width: 460px) {
    .menu {
        width: min(340px, 92vw);
        padding: 16px 16px 24px;
    }
}
.footer-links-section{
    background:#f3f8ff;
    border-top:1px solid #dfeaf9;
    border-bottom:1px solid #dfeaf9;
    padding:60px 0;
}

.footer-links-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px;
}

.footer-links-column h4{
    margin:0 0 18px;
    color:#0d3f96;
    font-size:1.15rem;
    font-weight:700;
}

.footer-links-column ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links-column li{
    margin-bottom:12px;
}

.footer-links-column a{
    color:#0d55d8;
    text-decoration:none;
    transition:.25s;
    display:inline-block;
}

.footer-links-column a:hover{
    color:#0d55d8;
    transform:translateX(5px);
}

.footer-logo-column{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
}

.footer-column-logo{
    max-width:220px;
    padding-top: 30px;
    height:auto;
}

.footer-column-btn{
    color:white!important;
    display:inline-block;
    text-decoration:none;
    font-size:.9rem;
    padding:12px 20px;
    text-align:center;
}

@media (max-width:991px){

    .footer-links-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .footer-links-section{
        padding:40px 0;
    }

    .footer-links-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

}

#cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 67, 135, .65);
    z-index: 99998;
    display: none;
}

#cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 650px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    z-index: 99999;
    display: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, .3);
    border-top: 6px solid #004387;
    font-family: Arial, sans-serif;
}

#cookie-reopen {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #004387;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 99997;
    font-size: 14px;
    transition: transform .2s ease;
}

#cookie-reopen:hover {
    transform: translateY(-2px);
}

#cookie-modal h3 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 1.2rem;
}

#cookie-modal p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.6;
    font-size: .95rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-primary {
    background: var(--blue);
    color: #fff;
}

.cookie-primary:hover {
    background: var(--dark-blue);
}

.cookie-secondary {
    background: #eef3fb;
    color: var(--text);
}

.cookie-secondary:hover {
    background: #dfeaf9;
}

#cookie-settings {
    display: none;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.cookie-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.cookie-row strong {
    color: var(--text);
    font-size: .95rem;
}

.cookie-row small {
    color: var(--muted);
}

#cookie-settings .cookie-btn {
    margin-top: 10px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    inset: 0;
    background: #ccd7e8;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease;
}

.cookie-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--blue);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-slider {
    cursor: not-allowed;
    opacity: .7;
}

@media (max-width: 576px) {

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

}

.accessibility-toggle-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 87, 217, 0.3);
    z-index: 99996;
    transition: background 0.2s ease, transform 0.2s ease;
}

.accessibility-toggle-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.accessibility-panel {
    position: fixed;
    left: 20px;
    bottom: 78px;
    width: 280px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(0, 27, 71, .25);
    border: 1px solid var(--border);
    padding: 10px;
    z-index: 99996;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.accessibility-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 8px;
}

.accessibility-panel-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.accessibility-close {
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}

.accessibility-close:hover {
    background: #eef3fb;
    color: var(--text);
}

.accessibility-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.accessibility-option i {
    width: 18px;
    text-align: center;
    color: var(--blue);
}

.accessibility-option:hover {
    background: #eef3fb;
}

.accessibility-option.is-active {
    background: var(--blue);
    color: #fff;
}

.accessibility-option.is-active i {
    color: #fff;
}

.accessibility-option.accessibility-reset {
    margin-top: 6px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    color: #c0392b;
}

.accessibility-option.accessibility-reset i {
    color: #c0392b;
}

html.a11y-contrast {
    filter: invert(1) hue-rotate(180deg);
}

html.a11y-grayscale {
    filter: grayscale(1);
}

html.a11y-contrast.a11y-grayscale {
    filter: invert(1) hue-rotate(180deg) grayscale(1);
}

html.a11y-contrast img,
html.a11y-contrast video,
html.a11y-contrast picture {
    filter: invert(1) hue-rotate(180deg);
}

html.a11y-underline-links a {
    text-decoration: underline !important;
}

html.a11y-readable-font,
html.a11y-readable-font body {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: .02em;
    line-height: 1.7;
}
.mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: min(1120px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid #dbe7f6;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 49, 120, .14);
    padding: 28px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 999;
}
.mega-col:nth-child(5) {
    grid-column: 4;
    grid-row: 2;
}
