body{
    font-family:'Inter',sans-serif;
    background:#F3F7FB;
    color:#1f2937;
    overflow-x:hidden;
}

body.accessibility-font-medium{
    font-size:18px;
}

body.accessibility-font-large{
    font-size:20px;
}

body.accessibility-font-medium p,
body.accessibility-font-medium li,
body.accessibility-font-medium a,
body.accessibility-font-medium button,
body.accessibility-font-medium input,
body.accessibility-font-medium textarea,
body.accessibility-font-medium select{
    font-size:1.08em;
}

body.accessibility-font-large p,
body.accessibility-font-large li,
body.accessibility-font-large a,
body.accessibility-font-large button,
body.accessibility-font-large input,
body.accessibility-font-large textarea,
body.accessibility-font-large select{
    font-size:1.16em;
}

body.accessibility-spacing-wide,
body.accessibility-spacing-wide p,
body.accessibility-spacing-wide li,
body.accessibility-spacing-wide a,
body.accessibility-spacing-wide button,
body.accessibility-spacing-wide input,
body.accessibility-spacing-wide textarea,
body.accessibility-spacing-wide select,
body.accessibility-spacing-wide h1,
body.accessibility-spacing-wide h2,
body.accessibility-spacing-wide h3,
body.accessibility-spacing-wide h4,
body.accessibility-spacing-wide h5,
body.accessibility-spacing-wide h6{
    letter-spacing:.06em;
}

body.accessibility-contrast-bw{
    background:#fff !important;
    color:#000 !important;
}

body.accessibility-contrast-bw *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#fff !important;
    background-image:none !important;
    color:#000 !important;
    border-color:#000 !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-contrast-bw .custom-navbar,
body.accessibility-contrast-bw .footer,
body.accessibility-contrast-bw .btn,
body.accessibility-contrast-bw [class*="btn-"],
body.accessibility-contrast-bw .accessibility-options button.is-active{
    background:#000 !important;
    color:#fff !important;
}

body.accessibility-contrast-bw .custom-navbar *,
body.accessibility-contrast-bw .footer *,
body.accessibility-contrast-bw .btn *,
body.accessibility-contrast-bw [class*="btn-"] *{
    color:#fff !important;
}

body.accessibility-contrast-bw .nav-search-toggle,
body.accessibility-contrast-bw .accessibility-toggle,
body.accessibility-contrast-bw .lang-btn{
    background:#000 !important;
    color:#fff !important;
    border-color:#fff !important;
}

body.accessibility-contrast-bw .lang-btn.active{
    background:#fff !important;
    color:#000 !important;
}

body.accessibility-contrast-invert{
    background:#000 !important;
    color:#fff !important;
}

body.accessibility-contrast-invert *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#000 !important;
    background-image:none !important;
    color:#fff !important;
    border-color:#fff !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-contrast-invert input,
body.accessibility-contrast-invert textarea,
body.accessibility-contrast-invert select{
    background:#000 !important;
    color:#fff !important;
    border-color:#fff !important;
}

body.accessibility-contrast-invert img{
    filter:grayscale(1) contrast(1.15);
}

body.accessibility-contrast-invert .nav-search-toggle,
body.accessibility-contrast-invert .accessibility-toggle,
body.accessibility-contrast-invert .lang-btn{
    background:#000 !important;
    color:#fff !important;
    border-color:#fff !important;
}

/* NAVBAR */

.custom-navbar{
    background:rgba(0,53,116,0.94);
    backdrop-filter:blur(12px);
    padding:8px 0;
    transition:0.3s;
}

.logo{
    height: 85px;
    width:auto;
    object-fit:contain;
}

.gerb{
    height:80px;
    width:auto;
    object-fit:contain;
}

.navbar-nav .nav-link{
    color:white !important;
    font-weight:600;
    margin:0 8px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    color:#8CC7F0 !important;
}

/* DROPDOWN */

.dropdown-menu{
    border:none;
    border-radius:14px;
    padding:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.dropdown-item{
    border-radius:10px;
    padding:10px 15px;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#0B5FA5;
    color:white;
}

.dropdown-wide{
    min-width:430px;
}

.dropdown-wide .dropdown-item{
    white-space:normal;
    line-height:1.3;
}

/* ОТКРЫВАТЬ ПРИ НАВЕДЕНИИ НА ПК */

@media(min-width:992px){
    .navbar .dropdown:hover > .dropdown-menu{
        display:block !important;
        margin-top:0;
    }

    .navbar .dropdown:hover > .nav-link{
        color:#8CC7F0 !important;
    }

    .navbar .dropdown:hover .dropdown-toggle::after{
        transform:rotate(180deg);
    }

    .navbar .dropdown-toggle::after{
        transition:0.2s;
    }
}

.lang-btn{
    color:white;
    text-decoration:none;
    font-weight:700;
}

.nav-search{
    position:relative;
    display:flex;
    align-items:center;
    margin-right:16px;
}

.nav-search-toggle{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s;
}

.nav-search-toggle:hover,
.nav-search.is-open .nav-search-toggle{
    background:white;
    color:#003574;
}

.nav-search-form{
    position:absolute;
    right:0;
    top:calc(100% + 12px);
    display:flex;
    align-items:center;
    gap:8px;
    width:min(340px, 78vw);
    padding:10px;
    border-radius:16px;
    background:white;
    box-shadow:0 16px 36px rgba(15,23,42,.22);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:.2s;
    z-index:1000;
}

.nav-search.is-open .nav-search-form{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-search-form input{
    min-width:0;
    flex:1;
    height:40px;
    border:1px solid #d7e7f7;
    border-radius:10px;
    padding:0 12px;
    color:#1f2937;
    outline:none;
}

.nav-search-form input:focus{
    border-color:#0B5FA5;
    box-shadow:0 0 0 3px rgba(11,95,165,.12);
}

.nav-search-form button{
    width:40px;
    height:40px;
    border:0;
    border-radius:10px;
    background:#0B5FA5;
    color:white;
}

.accessibility-topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    display:none;
    min-height:58px;
    background:#fff;
    color:#000;
    border-bottom:2px solid #000;
    z-index:1060;
}

body.accessibility-panel-open .accessibility-topbar{
    display:block;
}

body.accessibility-panel-open .custom-navbar{
    top:58px;
}

.accessibility-topbar-inner{
    min-height:58px;
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
    padding-top:8px;
    padding-bottom:8px;
}

.accessibility-topbar-title{
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
    white-space:nowrap;
}

.accessibility-topbar-group{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.accessibility-topbar-group span{
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.accessibility-font-value{
    min-width:54px;
    padding:7px 10px;
    border:1px solid #000;
    border-radius:4px;
    background:#fff;
    color:#000;
    font-size:14px;
    line-height:1;
    text-align:center;
}

.accessibility-topbar button{
    min-height:34px;
    border:1px solid #000;
    border-radius:4px;
    background:#fff;
    color:#000;
    font-weight:900;
    line-height:1;
    padding:8px 12px;
}

.accessibility-topbar button:hover,
.accessibility-topbar button.is-active{
    outline:2px solid #000;
    outline-offset:2px;
}

.accessibility-theme{
    width:34px;
    min-width:34px;
    height:34px;
    padding:0 !important;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50% !important;
    font-size:15px;
}

.accessibility-theme-normal{
    background:#fff !important;
    color:#000 !important;
}

.accessibility-theme-dark{
    background:#000 !important;
    color:#fff !important;
}

.accessibility-theme-blue{
    background:#dff5ff !important;
    color:#00324f !important;
}

.accessibility-theme-beige{
    background:#f4ecd2 !important;
    color:#3a2b0b !important;
}

.accessibility-theme-green{
    background:#123d2f !important;
    color:#fff !important;
}

.accessibility-normal,
.accessibility-topbar-close{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.accessibility-topbar-close{
    width:34px;
    min-width:34px;
    padding:0 !important;
    justify-content:center;
    margin-left:auto;
}

.accessibility-widget{
    display:flex;
    align-items:center;
    margin-left:12px;
}

.accessibility-toggle{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    font-weight:800;
    transition:.25s;
}

.accessibility-toggle:hover,
.accessibility-widget.is-open .accessibility-toggle{
    background:white;
    color:#003574;
}

.accessibility-toggle span{
    white-space:nowrap;
}

body.accessibility-enabled p,
body.accessibility-enabled li,
body.accessibility-enabled a,
body.accessibility-enabled button,
body.accessibility-enabled input,
body.accessibility-enabled textarea,
body.accessibility-enabled select,
body.accessibility-enabled td,
body.accessibility-enabled th{
    font-size:var(--accessibility-font-size, 14px) !important;
}

body.accessibility-enabled h1{
    font-size:calc(var(--accessibility-font-size, 14px) * 2.55) !important;
}

body.accessibility-enabled h2{
    font-size:calc(var(--accessibility-font-size, 14px) * 2.05) !important;
}

body.accessibility-enabled h3{
    font-size:calc(var(--accessibility-font-size, 14px) * 1.65) !important;
}

body.accessibility-theme-dark{
    background:#000 !important;
    color:#fff !important;
}

body.accessibility-theme-dark *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#000 !important;
    background-image:none !important;
    color:#fff !important;
    border-color:#fff !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-theme-blue{
    background:#dff5ff !important;
    color:#00324f !important;
}

body.accessibility-theme-blue *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#dff5ff !important;
    background-image:none !important;
    color:#00324f !important;
    border-color:#00324f !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-theme-beige{
    background:#f4ecd2 !important;
    color:#3a2b0b !important;
}

body.accessibility-theme-beige *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#f4ecd2 !important;
    background-image:none !important;
    color:#3a2b0b !important;
    border-color:#3a2b0b !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-theme-green{
    background:#123d2f !important;
    color:#fff !important;
}

body.accessibility-theme-green *:not(img):not(svg):not(path):not(video):not(iframe){
    background-color:#123d2f !important;
    background-image:none !important;
    color:#fff !important;
    border-color:#fff !important;
    box-shadow:none !important;
    text-shadow:none !important;
}

body.accessibility-theme-dark img,
body.accessibility-theme-blue img,
body.accessibility-theme-beige img,
body.accessibility-theme-green img{
    filter:grayscale(1) contrast(1.08);
}

body.accessibility-theme-dark .accessibility-topbar,
body.accessibility-theme-blue .accessibility-topbar,
body.accessibility-theme-beige .accessibility-topbar,
body.accessibility-theme-green .accessibility-topbar,
body.accessibility-theme-dark .accessibility-topbar *,
body.accessibility-theme-blue .accessibility-topbar *,
body.accessibility-theme-beige .accessibility-topbar *,
body.accessibility-theme-green .accessibility-topbar *{
    background-color:#fff !important;
    color:#000 !important;
    border-color:#000 !important;
}

body.accessibility-theme-dark .accessibility-theme-dark,
body.accessibility-theme-blue .accessibility-theme-blue,
body.accessibility-theme-beige .accessibility-theme-beige,
body.accessibility-theme-green .accessibility-theme-green{
    outline:3px solid #000;
    outline-offset:2px;
}

body .accessibility-topbar .accessibility-theme-normal{
    background:#fff !important;
    color:#000 !important;
}

body .accessibility-topbar .accessibility-theme-dark{
    background:#000 !important;
    color:#fff !important;
}

body .accessibility-topbar .accessibility-theme-blue{
    background:#dff5ff !important;
    color:#00324f !important;
}

body .accessibility-topbar .accessibility-theme-beige{
    background:#f4ecd2 !important;
    color:#3a2b0b !important;
}

body .accessibility-topbar .accessibility-theme-green{
    background:#123d2f !important;
    color:#fff !important;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:clamp(760px, 88vh, 900px);
    min-height:0;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#07111f;
    isolation:isolate;
    box-sizing:border-box;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35)
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:900px;
    padding-top:120px;
    padding-bottom:80px;
}

.hero-content h5{
    font-size:16px;
    font-weight:600;
    letter-spacing:1.2px;
    color:#d1fae5;
    margin-bottom:18px;
    max-width:760px;
}

.hero-content h1{
    font-size:54px;
    font-weight:700;
    line-height:1.15;
    margin-bottom:26px;
    max-width:860px;
}

.hero-content p{
    font-size:20px;
    line-height:1.7;
    max-width:760px;
    margin-bottom:36px;
    color:#f3f4f6;
}

.hero-btn{
    display:inline-block;
    background:#0B5FA5;
    color:white;
    padding:14px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#8CC7F0;
    color:white;
    transform:translateY(-3px);
}

/* SECTIONS */

.section-title{
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
}

.section-subtitle{
    color:#6b7280;
    max-width:760px;
    margin-bottom:40px;
}

/* ABOUT PREVIEW */

.about-preview{
    background:white;
    border-radius:28px;
    padding:45px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.stat-box{
    background:#F3F7FB;
    border-radius:22px;
    padding:28px;
    height:100%;
    transition:0.3s;
}

.stat-box:hover{
    transform:translateY(-6px);
}

.stat-box h3{
    color:#0B5FA5;
    font-size:38px;
    font-weight:700;
}

/* CARDS */

.info-card{
    background:white;
    border-radius:22px;
    padding:30px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    height:100%;
}

.info-card:hover{
    transform:translateY(-10px);
}

.info-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.plain-phone-link{
    color:inherit;
    text-decoration:none;
}

.plain-phone-link:hover{
    color:inherit;
    text-decoration:none;
}

.info-icon{
    font-size:40px;
    color:#0B5FA5;
    margin-bottom:20px;
}

/* FOOTER */

.footer{
    background:#003574;
    color:white;
    padding:60px 0 20px;
}

.footer-logo{
    display:block;
    width:92px;
    height:92px;
    object-fit:contain;
    margin:0 0 18px;
}

.footer-brand-title{
    max-width:440px;
    margin:0;
    font-size:16px;
    font-weight:400;
    line-height:1.5;
    text-align:justify;
    text-justify:inter-word;
}

@media(min-width:992px){
    .footer .row > .col-lg-4:nth-child(2){
        padding-left:48px;
    }
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    color:#8CC7F0;
}

/* MOBILE */

@media(max-width:992px){
    .hero{
        height:clamp(680px, 86vh, 820px);
    }

    .hero-content{
        padding-top:130px;
        padding-bottom:70px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content h5{
        font-size:13px;
    }

    .hero-content p{
        font-size:17px;
    }

    .logo{
        height:42px;
    }

    .gerb{
        height:48px;
    }

    .navbar-nav .nav-link{
        margin:6px 0;
    }

    .dropdown-wide{
        min-width:100%;
    }
}

@media(max-width:576px){
    .hero{
        height:720px;
        align-items:center;
    }

    .hero-content h1{
        font-size:30px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.55;
        margin-bottom:28px;
    }

    .hero-btn{
        padding:12px 26px;
    }
}

.charter-text{
    font-size:17px;
    line-height:1.8;
    color:#1f2937;
    white-space:normal;
}

.charter-text h2,
.charter-text h3{
    margin-top:30px;
}

.charter-text{
    font-size:18px;
    line-height:1.8;
}

.charter-text h1{
    font-size:38px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:25px;
}

.charter-text h2{
    font-size:30px;
    font-weight:700;
    color:#1f2937;
    margin-top:40px;
    margin-bottom:20px;
}

.charter-text h3{
    font-size:24px;
    font-weight:600;
    margin-top:30px;
    margin-bottom:15px;
}

.charter-text p{
    margin-bottom:18px;
}

.charter-text ul{
    margin-bottom:20px;
}

.charter-section{
    padding:120px 0 80px;
    background:#F3F7FB;
}

.charter-card{
    background:#fff;
    border-radius:18px;
    padding:44px;
    box-shadow:0 18px 42px rgba(15,23,42,.08);
}

.charter-heading{
    border-bottom:1px solid #dbe7f2;
    margin-bottom:30px;
    padding-bottom:24px;
}

.charter-heading span{
    display:inline-block;
    color:#0B5FA5;
    font-size:14px;
    font-weight:800;
    letter-spacing:.04em;
    margin-bottom:10px;
    text-transform:uppercase;
}

.charter-heading h1{
    color:#1f2937;
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    margin:0 0 14px;
}

.charter-heading p{
    color:#536171;
    font-size:18px;
    line-height:1.65;
    margin:0;
    max-width:980px;
}

.charter-document{
    color:#1f2937;
    font-size:17px;
    line-height:1.82;
}

.charter-approval{
    background:#f3f8f5;
    border-left:5px solid #003574;
    color:#1f2937;
    font-size:20px;
    font-weight:800;
    line-height:1.65;
    margin:0 0 32px;
    max-width:560px;
    padding:24px 28px;
}

.charter-document p{
    margin:0 0 18px;
}

.charter-unavailable{
    margin-top:40px;
}

.charter-download{
    margin:0 0 32px;
}

.charter-download .aarhus-download-badge{
    background:#0B5FA5;
    font-size:12px;
}

.charter-download .aarhus-download-button{
    gap:9px;
}

.policy-section{
    padding:120px 0 80px;
    background:#F3F7FB;
}

.policy-card{
    background:#fff;
    border-radius:18px;
    padding:44px;
    box-shadow:0 18px 42px rgba(15,23,42,.08);
}

.policy-heading{
    border-bottom:1px solid #dbe7f2;
    margin-bottom:30px;
    padding-bottom:24px;
}

.policy-heading span{
    display:inline-block;
    color:#0B5FA5;
    font-size:14px;
    font-weight:800;
    letter-spacing:.04em;
    margin-bottom:10px;
    text-transform:uppercase;
}

.policy-heading h1{
    color:#1f2937;
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    margin:0 0 14px;
}

.policy-heading p{
    color:#536171;
    font-size:18px;
    line-height:1.65;
    margin:0;
    max-width:980px;
}

.policy-approval{
    background:#f3f8f5;
    border-left:5px solid #003574;
    color:#1f2937;
    font-size:20px;
    font-weight:800;
    line-height:1.65;
    margin:0 0 32px;
    max-width:620px;
    padding:24px 28px;
}

.policy-document{
    color:#1f2937;
    font-size:17px;
    line-height:1.82;
}

.policy-document p{
    margin:0 0 18px;
}

.policy-table-wrap{
    margin:30px 0 34px;
    overflow-x:auto;
}

.policy-table-title{
    color:#1f2937;
    font-size:17px;
    font-weight:700;
    margin:0 0 14px;
}

.policy-table{
    width:100%;
    min-width:760px;
    border-collapse:collapse;
    color:#10233f;
    font-size:15px;
    line-height:1.65;
    background:#fff;
}

.policy-table th,
.policy-table td{
    border:1px solid #315a8f;
    padding:12px 14px;
    text-align:left;
    vertical-align:top;
}

.policy-table th{
    background:#f5f8fb;
    color:#10233f;
    font-weight:800;
}

.policy-table-number{
    width:62px;
}

.policy-table-form{
    width:260px;
    font-weight:700;
}

.policy-table-note{
    font-weight:600;
}

.policy-unavailable{
    margin-top:40px;
}

.reception-section{
    background:#F3F7FB;
    padding:70px 0 80px;
}

.reception-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 18px 42px rgba(15,23,42,.08);
    padding:44px;
}

.reception-heading{
    border-bottom:1px solid #dbe7f2;
    margin-bottom:28px;
    padding-bottom:24px;
}

.reception-heading span{
    color:#0B5FA5;
    display:inline-block;
    font-size:14px;
    font-weight:800;
    letter-spacing:.04em;
    margin-bottom:10px;
    text-transform:uppercase;
}

.reception-heading h2{
    color:#1f2937;
    font-size:38px;
    font-weight:800;
    line-height:1.15;
    margin:0 0 16px;
}

.reception-heading p{
    color:#1f2937;
    font-size:16px;
    font-weight:700;
    line-height:1.75;
    margin:0;
    text-transform:uppercase;
}

.reception-time{
    align-items:center;
    background:#f3f8f5;
    border-left:5px solid #003574;
    display:flex;
    flex-wrap:wrap;
    gap:8px 12px;
    margin:0 0 26px;
    padding:18px 22px;
}

.reception-time span{
    color:#536171;
    font-size:15px;
    font-weight:700;
}

.reception-time strong{
    color:#003574;
    font-size:20px;
    font-weight:800;
}

.reception-table-wrap{
    margin:0 0 22px;
    overflow-x:auto;
}

.reception-table{
    background:#fff;
    border-collapse:collapse;
    color:#10233f;
    font-size:15px;
    line-height:1.6;
    min-width:760px;
    width:100%;
}

.reception-table th,
.reception-table td{
    border:1px solid #315a8f;
    padding:16px 18px;
    text-align:center;
    vertical-align:middle;
}

.reception-table th{
    background:#f5f8fb;
    font-weight:800;
}

.reception-phone{
    align-items:center;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    color:#1f2937;
    font-size:17px;
}

.reception-phone span{
    font-weight:600;
}

.reception-phone a{
    color:#003574;
    font-weight:800;
    text-decoration:none;
}

.reception-phone a:hover{
    text-decoration:underline;
}

@media (max-width:768px){
    .charter-section{
        padding:90px 0 50px;
    }

    .charter-card{
        border-radius:14px;
        padding:24px;
    }

    .charter-heading h1{
        font-size:32px;
    }

    .charter-heading p,
    .charter-document{
        font-size:16px;
    }

    .charter-approval{
        font-size:17px;
        max-width:100%;
        padding:20px;
    }

    .policy-section{
        padding:90px 0 50px;
    }

    .policy-card{
        border-radius:14px;
        padding:24px;
    }

    .policy-heading h1{
        font-size:32px;
    }

    .policy-heading p,
    .policy-document{
        font-size:16px;
    }

    .policy-approval{
        font-size:17px;
        max-width:100%;
        padding:20px;
    }

    .reception-section{
        padding:50px 0;
    }

    .reception-card{
        border-radius:14px;
        padding:24px;
    }

    .reception-heading h2{
        font-size:30px;
    }

    .reception-heading p{
        font-size:14px;
        line-height:1.65;
    }

    .reception-time{
        padding:16px 18px;
    }

    .reception-phone{
        font-size:16px;
    }
}

.structure-preview{
    max-width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    transition:0.3s;
    cursor:pointer;
}

.structure-preview:hover{
    transform:scale(1.02);
}

.modal-content{
    background:transparent !important;
}

.modal img{
    max-height:90vh;
    object-fit:contain;
}

.director-photo{
    width:100%;
    max-width:600px;
    height:520px;
    object-fit:cover;
    object-position:center 38%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.director-message{
    font-size:18px;
    line-height:1.8;
    text-align:justify;
    color:#333;
}

.director-message h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
}

.director-section{
    padding-top:130px;
    padding-bottom:70px;
    background:#F3F7FB;
}

.director-card{
    background:white;
    border-radius:18px;
    padding:48px;
    box-shadow:0 14px 36px rgba(15,23,42,0.08);
}

.director-question-box{
    margin-top:54px;
    padding:32px;
    border-radius:18px;
    background:linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
    border:1px solid #d1e7dc;
}

.director-question-head{
    margin-bottom:24px;
}

.director-question-head span{
    display:inline-block;
    color:#0B5FA5;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0;
    margin-bottom:8px;
}

.director-question-head h2{
    color:#1f2937;
    font-size:26px;
    font-weight:800;
    line-height:1.35;
    margin:0;
}

.director-question-form .form-label{
    font-weight:700;
    color:#1f2937;
}

.director-question-form .form-control{
    min-height:48px;
    border-color:#cbd5e1;
    border-radius:10px;
}

.director-question-form textarea.form-control{
    min-height:180px;
}

.director-question-form .form-control:focus{
    border-color:#0B5FA5;
    box-shadow:0 0 0 0.2rem rgba(11,95,165,0.16);
}

.director-question-submit{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    border:0;
    border-radius:999px;
    padding:13px 24px;
    background:#003574;
    color:white;
    font-weight:800;
}

.director-question-submit:hover{
    background:#075f32;
}

.director-hp-field{
    position:absolute;
    left:-9999px;
    width:1px;
    height:1px;
    opacity:0;
}

.news-detail-title{
    font-size:42px;
    font-weight:700;
    text-align:center;
    margin-bottom:20px;
}

.news-detail-main-img{
    max-width:100%;
    max-height:500px;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    display:block;
    margin:0 auto;
}

.news-detail-extra-img{
    max-width:100%;
    max-height:500px;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
    display:block;
    margin:0 auto;
}

.news-image-zoom{
    display:block;
    width:100%;
    padding:0;
    border:0;
    background:transparent;
    cursor:zoom-in;
    border-radius:18px;
}

.news-image-zoom-extra{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    border-radius:16px;
}

.news-image-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:32px;
    background:rgba(15,23,42,0.88);
}

.news-image-lightbox.is-open{
    display:flex;
}

.news-image-lightbox img{
    display:block;
    max-width:min(1120px, 96vw);
    max-height:88vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:18px;
    box-shadow:0 24px 70px rgba(0,0,0,0.35);
    background:white;
}

.news-image-lightbox-close{
    position:absolute;
    top:22px;
    right:24px;
    width:46px;
    height:46px;
    border:0;
    border-radius:50%;
    background:white;
    color:#0f172a;
    font-size:24px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

body.news-lightbox-open{
    overflow:hidden;
}

.news-detail-content{
    font-family:'Inter',sans-serif;
    font-size:19px;
    line-height:1.8;
    color:#1f2937;
    word-break:break-word;
    overflow-wrap:break-word;
}

.news-detail-content *{
    font-family:inherit !important;
    font-size:inherit !important;
    line-height:inherit !important;
    color:inherit;
}

.news-detail-content p{
    margin:0 0 18px;
}

.news-detail-content h2,
.news-detail-content h3{
    color:#1f2937;
    font-weight:800;
    line-height:1.25;
    margin:28px 0 14px;
}

.news-detail-content h2{
    font-size:28px;
}

.news-detail-content h3{
    font-size:23px;
}

.news-detail-content ul,
.news-detail-content ol{
    margin:0 0 18px 24px;
    padding:0;
}

.news-detail-content li{
    margin-bottom:8px;
}

.news-detail-content strong,
.news-detail-content b{
    font-weight:800;
}

.news-detail-content img{
    max-width:100%;
    height:auto;
}

.news-video-block{
    max-width:850px;
    margin-left:auto;
    margin-right:auto;
}

.news-video-lightbox{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 16px 40px rgba(15,23,42,0.16);
    background:#111827;
}

.news-video-lightbox img{
    display:block;
    width:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    opacity:.9;
    transition:transform .25s ease, opacity .25s ease;
}

.news-video-lightbox:hover img{
    transform:scale(1.03);
    opacity:.72;
}

.news-video-play{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    width:76px;
    height:76px;
    border-radius:50%;
    background:#0B5FA5;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 14px 34px rgba(0,0,0,.28);
}

.news-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.news-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.news-card-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.news-card-body{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.news-card-date{
    font-size:14px;
    color:#0B5FA5;
    font-weight:700;
    margin-bottom:12px;
}

.news-card-title{
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:15px;
    color:#1f2937;
}

.news-card-text{
    font-size:17px;
    line-height:1.6;
    color:#4b5563;
    margin-bottom:24px;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-card-btn{
    margin-top:auto;
    display:inline-block;
    color:#0B5FA5;
    font-weight:700;
    text-decoration:none;
}

.news-card-btn:hover{
    color:#003574;
}

.search-section{
    padding:54px 0 78px;
    background:#F3F7FB;
}

.search-page-form{
    display:flex;
    gap:12px;
    margin:0 auto 28px;
    max-width:860px;
    padding:12px;
    border-radius:18px;
    background:white;
    box-shadow:0 16px 42px rgba(15,23,42,.08);
}

.search-page-form input{
    flex:1;
    min-width:0;
    height:52px;
    border:1px solid #d7e7f7;
    border-radius:12px;
    padding:0 16px;
    color:#1f2937;
    font-size:16px;
    outline:none;
}

.search-page-form input:focus{
    border-color:#0B5FA5;
    box-shadow:0 0 0 3px rgba(11,95,165,.12);
}

.search-page-form button{
    height:52px;
    border:0;
    border-radius:12px;
    padding:0 22px;
    background:#0B5FA5;
    color:white;
    font-weight:800;
}

.search-results-head{
    max-width:860px;
    margin:0 auto 18px;
    color:#536171;
}

.search-results-head span{
    display:block;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    color:#0B5FA5;
}

.search-results-head strong{
    display:block;
    color:#1f2937;
    font-size:28px;
    font-weight:800;
}

.search-results-list{
    max-width:860px;
    margin:0 auto;
    display:grid;
    gap:16px;
}

.search-result-item{
    display:block;
    padding:24px;
    border-radius:18px;
    background:white;
    color:#1f2937;
    text-decoration:none;
    box-shadow:0 14px 34px rgba(15,23,42,.07);
    transition:.25s;
}

.search-result-item:hover{
    transform:translateY(-3px);
    color:#1f2937;
    box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.search-result-type{
    display:inline-flex;
    margin-bottom:10px;
    padding:5px 10px;
    border-radius:999px;
    background:#eaf4ff;
    color:#0B5FA5;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
}

.search-result-item h2{
    margin:0 0 8px;
    color:#1f2937;
    font-size:22px;
    font-weight:800;
}

.search-result-item p{
    margin:0;
    color:#536171;
    line-height:1.7;
}

.search-highlight{
    background:#dceeff;
    color:#003574;
    border-radius:5px;
    padding:1px 4px;
    font-weight:800;
}

.latest-news-section{
    background:#F3F7FB;
    padding:60px 0 80px;
}

.news-section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:28px;
}

.news-section-head h2{
    font-size:38px;
    font-weight:700;
    margin:0;
}

.section-label{
    color:#0B5FA5;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.all-news-link{
    color:#0B5FA5 !important;
    font-weight:700;
    text-decoration:none;
}

.news-slider-card{
    position:relative;
    display:block;
    height:430px;
    border-radius:26px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 18px 45px rgba(0,0,0,0.16);
}

.news-slider-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.news-slider-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.86) 0%,
        rgba(0,0,0,0.65) 38%,
        rgba(0,0,0,0.18) 75%,
        rgba(0,0,0,0.05) 100%
    );
}

.news-slider-content{
    position:absolute;
    left:55px;
    top:55px;
    max-width:620px;
    color:white;
    z-index:2;
}

.news-slider-date{
    display:inline-block;
    background:#0B5FA5;
    padding:7px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.news-slider-content h3{
    font-size:34px;
    font-weight:800;
    line-height:1.18;
    margin-bottom:18px;
    color:white;
}

.news-slider-content p{
    font-size:18px;
    line-height:1.5;
    color:#e5e7eb;
    margin-bottom:28px;
}

.news-slider-btn{
    display:inline-block;
    background:#0B5FA5;
    color:white;
    padding:13px 28px;
    border-radius:14px;
    font-weight:700;
}

.news-slider-dots{
    bottom:22px;
}

.news-slider-dots button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
    background:white !important;
    opacity:0.5;
    border:none !important;
}

.news-slider-dots .active{
    background:#0B5FA5 !important;
    opacity:1;
}


.news-slider-card{
    position:relative;
    display:block;
}

/* MODERN PORTAL UPDATES */

.language-switcher{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:nowrap;
    min-width:128px;
}

.lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:38px;
    height:34px;
    border:1px solid rgba(255,255,255,0.24);
    border-radius:999px;
    color:white;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    transition:0.25s;
}

.lang-btn:hover,
.lang-btn.active{
    background:white;
    color:#003574;
}

.inner-hero{
    margin-top:0;
    padding-top:164px;
    padding-bottom:64px;
    background:linear-gradient(135deg, #003574 0%, #0B5FA5 100%);
    color:white;
}

.inner-hero .lead{
    color:rgba(255,255,255,0.88);
}

.content-card{
    background:white;
    border-radius:18px;
    padding:36px;
    box-shadow:0 14px 36px rgba(15,23,42,0.08);
}

.latest-news-section{
    background:#F3F7FB;
    padding:72px 0 84px;
}

.news-section-head{
    gap:24px;
}

.news-section-head h2{
    max-width:760px;
}

.all-news-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
}

.latest-news-swiper{
    padding:4px 2px 48px;
}

.latest-news-swiper .swiper-slide{
    height:auto;
}

.news-slider-card{
    height:320px;
    border-radius:18px;
    box-shadow:0 14px 34px rgba(15,23,42,0.14);
    background:#003574;
}

.news-slider-card:hover img{
    transform:scale(1.04);
}

.news-slider-card img{
    transition:0.5s;
}

.news-slider-overlay{
    background:linear-gradient(
        180deg,
        rgba(3,31,18,0.10) 0%,
        rgba(3,31,18,0.55) 48%,
        rgba(3,31,18,0.92) 100%
    );
}

.news-slider-content{
    left:24px;
    right:24px;
    top:auto;
    bottom:24px;
    max-width:none;
}

.news-slider-date{
    background:rgba(0,53,116,0.92);
    padding:6px 12px;
    font-size:13px;
    margin-bottom:12px;
}

.news-slider-content h3{
    font-size:24px;
    line-height:1.25;
    margin-bottom:18px;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.news-slider-content p{
    display:none;
}

.news-slider-btn{
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.25);
    padding:9px 14px;
    border-radius:999px;
    font-size:14px;
}

.latest-news-pagination{
    position:absolute;
    left:0;
    right:0;
    bottom:0 !important;
    display:flex;
    justify-content:center;
    gap:8px;
}

.latest-news-pagination .swiper-pagination-bullet{
    width:9px;
    height:9px;
    background:#003574;
    opacity:0.28;
}

.latest-news-pagination .swiper-pagination-bullet-active{
    width:26px;
    border-radius:999px;
    opacity:1;
    background:#0B5FA5;
}

.assistant-section{
    background:linear-gradient(180deg, #ffffff 0%, #eef7f2 100%);
    padding:78px 0;
}

.assistant-chat{
    background:white;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 54px rgba(15,23,42,0.14);
}

.assistant-chat-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    background:linear-gradient(135deg, #003574, #0A4D86);
    color:white;
    padding:24px 28px;
}

.assistant-brand{
    display:flex;
    align-items:center;
    gap:16px;
}

.assistant-brand h2{
    font-size:24px;
    font-weight:800;
    margin:0 0 4px;
}

.assistant-brand p{
    margin:0;
    color:rgba(255,255,255,0.82);
}

.assistant-chat-langs span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:48px;
    height:34px;
    border-radius:999px;
    background:white;
    color:#003574;
    font-weight:800;
}

.assistant-chat-quick{
    background:#eef6ff;
    border-bottom:1px solid #d7e7f7;
    padding:18px 28px 14px;
}

.assistant-chat-quick > span{
    display:block;
    color:#334155;
    margin-bottom:12px;
}

.assistant-questions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:0;
}

.assistant-questions button{
    border:1px solid #b9d7f5;
    background:white;
    color:#06447d;
    border-radius:999px;
    padding:9px 15px;
    font-weight:700;
    font-size:14px;
    transition:0.25s;
}

.assistant-questions button:hover,
.assistant-questions button.active{
    background:#0B5FA5;
    color:white;
    border-color:#0B5FA5;
}

.assistant-messages{
    min-height:330px;
    background:#f8fafc;
    padding:26px 28px;
}

.assistant-message-row{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.assistant-message-row.user{
    justify-content:flex-end;
}

.assistant-message-row.is-hidden{
    display:none;
}

.assistant-avatar,
.assistant-mini-avatar{
    width:46px;
    height:46px;
    border-radius:50%;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#003574;
    color:white;
}

.assistant-mini-avatar{
    width:34px;
    height:34px;
    flex-basis:34px;
    background:#dff4e8;
    color:#003574;
}

.assistant-bubble{
    max-width:78%;
    background:white;
    border:1px solid #d8e5ef;
    border-radius:14px;
    padding:15px 18px;
    color:#1f2937;
    line-height:1.7;
}

.user-bubble{
    background:#07539a;
    color:white;
    border-color:#07539a;
}

.assistant-input-bar{
    display:flex;
    gap:10px;
    border-top:1px solid #d7e7f7;
    padding:16px 18px;
}

.assistant-input-bar input{
    flex:1;
    height:48px;
    border:1px solid #b9d7f5;
    border-radius:10px;
    padding:0 16px;
    color:#64748b;
    background:white;
}

.assistant-input-bar button{
    width:58px;
    border:0;
    border-radius:10px;
    background:#07539a;
    color:white;
    font-size:18px;
}

.eco-today-section{
    padding:70px 0 86px;
    background:#f3f8f5;
}

.eco-today-card{
    display:grid;
    grid-template-columns:minmax(0, 1.35fr) minmax(320px, .65fr);
    overflow:hidden;
    border-radius:22px;
    background:#003574;
    box-shadow:0 18px 48px rgba(0,53,116,.18);
}

.eco-today-main{
    padding:42px;
    color:white;
    background:linear-gradient(135deg,#003574 0%,#0B5FA5 100%);
}

.eco-today-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:16px;
    padding:7px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.13);
    color:#d7e8fb;
    font-size:13px;
    font-weight:700;
}

.eco-today-badge i{
    color:#55d67a;
    font-size:9px;
}

.eco-today-main h2{
    margin:0 0 12px;
    color:white;
    font-size:34px;
    font-weight:800;
    line-height:1.18;
}

.eco-today-subtitle{
    max-width:660px;
    margin:0 0 28px;
    color:#d9e8f7;
    font-size:17px;
    line-height:1.65;
}

.eco-today-metrics{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:16px;
    margin-bottom:30px;
}

.eco-metric{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
    padding:16px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:16px;
    background:rgba(255,255,255,.1);
}

.eco-metric-icon{
    flex:0 0 auto;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    color:white;
    font-size:18px;
}

.eco-icon-temp{
    background:#e25d4f;
}

.eco-icon-wind{
    background:#1f8fd1;
}

.eco-icon-humidity{
    background:#21a67a;
}

.eco-metric-label{
    color:#c7ddf3;
    font-size:12px;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
}

.eco-metric-value{
    color:white;
    font-size:22px;
    font-weight:800;
    line-height:1.2;
}

.eco-today-links{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

.eco-today-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:white;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,.45);
    padding-bottom:4px;
}

.eco-today-link:hover{
    color:white;
    opacity:.82;
}

.eco-today-tip{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:42px 38px;
    background:white;
}

.eco-tip-icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    border-radius:16px;
    background:#eef6fb;
    color:#003574;
    font-size:22px;
}

.eco-today-tip h3{
    margin:0 0 12px;
    color:#1f2937;
    font-size:22px;
    font-weight:800;
}

.eco-today-tip p{
    margin:0;
    color:#536171;
    font-size:16px;
    line-height:1.7;
}

.footer a{
    color:white;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:22px;
}

.footer-social span{
    font-weight:700;
}

.footer-social a,
.contact-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.25s;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    color:white;
    border:1px solid rgba(255,255,255,0.25);
    font-size:20px;
    background:rgba(255,255,255,0.08);
}

.footer-social a:hover{
    background:white;
    color:#003574;
    transform:translateY(-2px);
}

.footer-meter{
    margin-top:30px;
}

.footer-meter-title{
    display:block;
    font-weight:700;
    line-height:1.2;
    margin-bottom:16px;
}

.footer-meter-informer{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 12px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:10px;
    background:rgba(255,255,255,0.08);
    text-decoration:none;
    transition:0.25s;
}

.footer-meter-informer:hover{
    background:white;
    transform:translateY(-2px);
}

.footer-meter-informer img{
    display:block;
}

.contact-social{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:24px;
}

.contact-social a{
    gap:10px;
    color:#003574;
    border:1px solid #d1e7dc;
    border-radius:999px;
    padding:14px 22px;
    font-weight:800;
    background:#f7fbf8;
    min-width:150px;
}

.contact-social a:hover{
    background:#003574;
    color:white;
}

.news-detail-section{
    padding-top:150px;
    padding-bottom:70px;
    background:#F3F7FB;
}

.news-detail-card{
    background:white;
    border-radius:18px;
    padding:48px;
    box-shadow:0 14px 36px rgba(15,23,42,0.10);
}

@media(max-width:992px){
    .language-switcher{
        margin-top:12px;
    }

    .nav-search{
        margin:12px 0 0;
        align-items:flex-start;
        flex-direction:column;
    }

    .nav-search-form{
        position:static;
        width:100%;
        margin-top:10px;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
    }

    .nav-search.is-open .nav-search-form{
        display:flex;
    }

    .accessibility-widget{
        margin:12px 0 0;
        align-items:flex-start;
    }

    .accessibility-toggle{
        min-height:40px;
    }

    .accessibility-topbar{
        position:fixed;
        max-height:55vh;
        overflow-y:auto;
    }

    .accessibility-topbar-inner{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
    }

    body.accessibility-panel-open .custom-navbar{
        top:0;
    }

    .accessibility-topbar-close{
        position:absolute;
        top:10px;
        right:12px;
    }

    .accessibility-normal{
        width:100%;
        justify-content:center;
    }

    .news-section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .inner-hero{
        margin-top:0;
        padding-top:130px;
    }

    .news-detail-card{
        padding:28px;
    }

    .eco-today-card{
        grid-template-columns:1fr;
    }

    .eco-today-tip{
        border-top:1px solid #e3edf5;
    }
}

@media(max-width:576px){
    .latest-news-section,
    .assistant-section,
    .eco-today-section{
        padding:52px 0;
    }

    .news-slider-card{
        height:300px;
    }

    .news-slider-content{
        left:18px;
        right:18px;
        bottom:18px;
    }

    .section-title,
    .news-section-head h2{
        font-size:30px;
    }

    .news-image-lightbox{
        padding:16px;
    }

    .news-image-lightbox-close{
        top:12px;
        right:12px;
    }

    .assistant-panel{
        padding:18px;
    }

    .assistant-chat-header,
    .assistant-chat-quick,
    .assistant-messages{
        padding-left:18px;
        padding-right:18px;
    }

    .assistant-bubble{
        max-width:88%;
    }

    .eco-today-main,
    .eco-today-tip{
        padding:26px 22px;
    }

    .eco-today-main h2{
        font-size:28px;
    }

    .eco-today-subtitle,
    .eco-today-tip p{
        font-size:15px;
    }

    .eco-today-metrics{
        grid-template-columns:1fr;
    }

    .eco-today-link{
        align-items:flex-start;
    }

    .search-page-form{
        flex-direction:column;
    }

    .search-page-form button{
        width:100%;
    }

    .search-result-item{
        padding:20px;
    }
}

.structure-section,
.employee-section{
    padding:150px 0 80px;
    background:#F3F7FB;
}

.structure-official{
    background:white;
    border-radius:18px;
    padding:34px;
    box-shadow:0 16px 42px rgba(15,23,42,0.08);
}

.structure-approval{
    border-left:4px solid #003574;
    background:#f7fbf8;
    padding:18px 20px;
    color:#1f2937;
    font-weight:700;
    line-height:1.65;
}

.structure-heading span,
.employee-info span,
.structure-unavailable span{
    display:inline-block;
    color:#0B5FA5;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:0;
    margin-bottom:8px;
}

.structure-heading h1{
    font-size:44px;
    font-weight:800;
    color:#1f2937;
    margin:0 0 12px;
}

.structure-heading p{
    font-size:20px;
    color:#4b5563;
    line-height:1.55;
    margin:0;
}

.structure-help{
    margin:24px 0;
    color:#365348;
    background:#edf7f1;
    border:1px solid #d1e7dc;
    border-radius:12px;
    padding:14px 18px;
    display:flex;
    gap:10px;
    align-items:center;
}

.structure-tree{
    background:white;
    border-radius:18px;
    padding:30px;
    box-shadow:0 16px 42px rgba(15,23,42,0.08);
    overflow:hidden;
}

.structure-level{
    display:grid;
    gap:18px;
    margin:0 auto;
}

.structure-level-root{
    max-width:460px;
}

.structure-level-two{
    grid-template-columns:repeat(2, minmax(0, 1fr));
}

.structure-level-three{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

.structure-children{
    position:relative;
    margin-top:28px;
    padding-top:28px;
}

.structure-children::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:1px;
    height:24px;
    background:#b8d8c5;
}

.structure-children-nested{
    margin-top:18px;
    padding:22px 18px 0;
    border-left:1px solid #d7eadf;
    border-right:1px solid #d7eadf;
    border-radius:16px;
}

.structure-children.is-hidden{
    display:none;
}

.structure-card{
    min-height:126px;
    border:1px solid #d7eadf;
    border-radius:14px;
    background:#fbfdfc;
    padding:18px;
    box-shadow:0 10px 24px rgba(15,23,42,0.05);
    transition:0.25s ease;
}

.structure-card:hover,
.structure-card.is-open{
    border-color:#0B5FA5;
    box-shadow:0 16px 30px rgba(11,95,165,0.12);
}

.structure-card-primary{
    background:linear-gradient(135deg, #003574, #0B5FA5);
    color:white;
    border-color:#003574;
}

.structure-card-staff{
    background:#f7fbf8;
}

.structure-card-leaf{
    display:flex;
    align-items:center;
}

.structure-toggle{
    width:100%;
    border:0;
    background:transparent;
    color:inherit;
    padding:0;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
    text-align:left;
    font-size:18px;
    font-weight:800;
    line-height:1.35;
}

.structure-toggle i{
    margin-top:4px;
    color:#0B5FA5;
    transition:0.25s ease;
}

.structure-card-primary .structure-toggle i{
    color:white;
}

.structure-toggle[aria-expanded="true"] i{
    transform:rotate(180deg);
}

.structure-card-title{
    color:#1f2937;
    font-size:18px;
    font-weight:800;
    line-height:1.4;
}

.structure-employees{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid rgba(0,53,116,0.16);
    display:flex;
    flex-direction:column;
    gap:4px;
}

.structure-card-primary .structure-employees{
    border-top-color:rgba(255,255,255,0.25);
}

.structure-employees span{
    color:#6b7280;
    font-size:13px;
    font-weight:700;
}

.structure-card-primary .structure-employees span{
    color:rgba(255,255,255,0.78);
}

.structure-employee-link{
    color:#003574;
    font-weight:800;
    text-decoration:none;
}

.structure-card-primary .structure-employee-link{
    color:white;
    text-decoration:underline;
    text-underline-offset:4px;
}

.structure-employee-link:hover{
    color:#075f32;
}

.structure-card-primary .structure-employee-link:hover{
    color:#e7fff1;
}

.structure-staff-list{
    margin-top:16px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.structure-staff-item{
    background:white;
    border:1px solid #dbece2;
    border-radius:10px;
    padding:12px 14px;
}

.structure-staff-item strong{
    display:block;
    color:#1f2937;
    line-height:1.35;
    margin-bottom:5px;
}

.structure-unavailable,
.employee-card{
    background:white;
    border-radius:18px;
    padding:42px;
    box-shadow:0 16px 42px rgba(15,23,42,0.08);
}

.structure-unavailable h1{
    color:#1f2937;
    font-size:36px;
    font-weight:800;
    margin:0 0 24px;
}

.structure-lang-actions{
    display:flex;
    gap:12px;
}

.structure-lang-actions a,
.employee-back{
    display:inline-flex;
    align-items:center;
    gap:9px;
    border-radius:999px;
    padding:12px 18px;
    background:#003574;
    color:white;
    text-decoration:none;
    font-weight:800;
}

.structure-lang-actions a:hover,
.employee-back:hover{
    background:#075f32;
    color:white;
}

.employee-profile-card{
    margin-top:22px;
    display:grid;
    grid-template-columns:260px 1fr;
    gap:34px;
    align-items:start;
}

.department-profile-card{
    margin-top:22px;
}

.employee-photo-wrap{
    border-radius:18px;
    background:#edf7f1;
    border:1px solid #d1e7dc;
    padding:0;
    overflow:hidden;
}

.employee-photo{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    border-radius:14px;
    background:white;
}

.employee-info h1{
    color:#1f2937;
    font-size:40px;
    font-weight:800;
    margin:0 0 10px;
}

.employee-info h2{
    color:#003574;
    font-size:22px;
    font-weight:800;
    margin:0 0 24px;
}

.employee-contacts{
    display:grid;
    gap:12px;
    margin-bottom:24px;
    color:#374151;
}

.employee-contacts i{
    width:24px;
    color:#0B5FA5;
}

.employee-info p{
    color:#4b5563;
    font-size:18px;
    line-height:1.7;
}

@media(max-width:992px){
    .structure-section,
    .employee-section{
        padding-top:120px;
    }

    .structure-official,
    .employee-profile-card{
        grid-template-columns:1fr;
    }

    .structure-level-two,
    .structure-level-three{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){
    .structure-section,
    .employee-section{
        padding-top:105px;
        padding-bottom:52px;
    }

    .structure-official,
    .structure-tree,
    .structure-unavailable,
    .employee-card{
        padding:22px;
        border-radius:14px;
    }

    .structure-heading h1,
    .employee-info h1,
    .structure-unavailable h1{
        font-size:30px;
    }

    .structure-heading p{
        font-size:17px;
    }

    .structure-toggle,
    .structure-card-title{
        font-size:16px;
    }
}

/* Official organizational chart */
.org-chart-scroll{
    overflow-x:auto;
    overflow-y:hidden;
    padding:4px 4px 24px;
    scrollbar-width:none;
}

.org-chart-scroll::-webkit-scrollbar{
    display:none;
}

.structure-section > .container{
    max-width:1600px;
}

.org-chart{
    --org-line:#8f999f;
    --org-blue:#1E2761;
    --org-text:#1f3b5f;
    --org-soft:#E8EFFC;
    --org-border:#b8cfee;
    --org-offset-x:40px;
    --org-offset-y:34px;
    position:relative;
    width:100%;
    min-width:1580px;
    height:924px;
    box-sizing:border-box;
    margin:0 auto;
    padding:0;
    background:#fff;
    border:1px solid #dbe7f2;
    border-radius:16px;
    box-shadow:0 16px 42px rgba(15,23,42,0.08);
}

.org-chart-lines{
    position:absolute;
    inset:0;
    z-index:0;
    overflow:visible;
    pointer-events:none;
}

.org-svg-line{
    fill:none;
    stroke:var(--org-line);
    stroke-width:1.4;
    stroke-linecap:square;
    stroke-linejoin:miter;
}

.org-svg-line-main{
    stroke-width:1.8;
}

.org-card{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    width:100%;
    padding:16px 18px;
    border:1px solid var(--org-border);
    border-radius:8px;
    background:#fff;
    color:var(--org-text);
    font-size:14px;
    font-weight:800;
    line-height:1.35;
    text-align:center;
    text-decoration:none;
    box-shadow:0 8px 18px rgba(15,23,42,0.08);
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

a.org-card:hover,
.org-staff-links a:hover{
    color:#003574;
    border-color:#0B5FA5;
    box-shadow:0 12px 26px rgba(0,53,116,0.16);
    transform:translateY(-2px);
}

.org-card-title{
    display:block;
    font-size:16px;
    font-weight:850;
    line-height:1.25;
}

.org-card strong{
    display:block;
    margin-top:8px;
    color:inherit;
    font-size:13px;
    font-weight:600;
    opacity:.82;
}

.org-card-director{
    position:absolute;
    left:calc(var(--org-offset-x) + 519px);
    top:calc(var(--org-offset-y) - 10px);
    width:401px;
    height:73px;
    background:var(--org-blue);
    border-color:var(--org-blue);
    color:#fff;
    box-shadow:0 12px 24px rgba(47,52,125,0.18);
}

.org-card-director:hover{
    color:#fff !important;
    border-color:#1377c5 !important;
}

.org-card-director .org-card-title{
    font-size:17px;
}

.org-card-deputy{
    position:absolute;
    left:calc(var(--org-offset-x) + 524px);
    top:calc(var(--org-offset-y) + 278px);
    width:401px;
    height:72px;
    background:var(--org-soft);
    border-color:var(--org-border);
}

.org-card-admin{
    position:absolute;
    left:calc(var(--org-offset-x) + 1007px);
    top:calc(var(--org-offset-y) + 278px);
    width:372px;
    height:74px;
    background:var(--org-soft);
    border-color:var(--org-border);
}

.org-staff-card{
    position:absolute;
    left:calc(var(--org-offset-x) + 39px);
    top:calc(var(--org-offset-y) + 45px);
    width:332px;
    height:184px;
    justify-content:flex-start;
    padding:14px 16px;
    border-color:#d7dde5;
    background:#fff;
}

.org-staff-card > .org-card-title{
    margin-bottom:13px;
    color:#003574;
    font-size:15px;
    font-weight:800;
    line-height:1.16;
}

.org-staff-links{
    display:grid;
    width:100%;
    gap:9px;
}

.org-staff-links a{
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-sizing:border-box;
    min-height:42px;
    padding:5px 10px;
    border:1px solid #d1dfec;
    border-radius:4px;
    background:#fff;
    color:var(--org-text);
    text-decoration:none;
    box-shadow:none;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.org-staff-links strong,
.org-staff-links span{
    display:block;
}

.org-staff-links strong{
    font-size:12.5px;
    font-weight:850;
}

.org-staff-links span{
    margin-top:3px;
    color:#53677e;
    font-size:11.5px;
    font-weight:500;
}

html[lang="kz"] .org-staff-card{
    top:calc(var(--org-offset-y) + 45px);
    height:210px;
    padding:14px 16px 12px;
}

html[lang="kz"] .org-staff-card > .org-card-title{
    margin-bottom:10px;
}

html[lang="kz"] .org-staff-links{
    gap:7px;
}

html[lang="kz"] .org-staff-links a{
    min-height:54px;
}

.org-column{
    display:contents;
}

.org-column-children{
    display:contents;
}

.org-card-department{
    position:absolute;
    background:#fff;
    border-color:#d7dde5;
}

.org-card-department-blue{
    background:#fff;
    border-color:#d7dde5;
}

.org-card-unit{
    position:absolute;
    font-size:14px;
    font-weight:800;
    border-color:#d7dde5;
}

[data-org-node="ecoFund"]{
    left:calc(var(--org-offset-x) + 95px);
    top:calc(var(--org-offset-y) + 382px);
    width:328px;
    height:82px;
}

[data-org-node="nationalReport"]{
    left:calc(var(--org-offset-x) + 96px);
    top:calc(var(--org-offset-y) + 492px);
    width:327px;
    height:91px;
}

[data-org-node="ecoInfo"]{
    left:calc(var(--org-offset-x) + 97px);
    top:calc(var(--org-offset-y) + 630px);
    width:327px;
    height:76px;
}

[data-org-node="bank"]{
    left:calc(var(--org-offset-x) + 524px);
    top:calc(var(--org-offset-y) + 407px);
    width:406px;
    height:69px;
}

[data-org-node="dataAnalytics"]{
    left:calc(var(--org-offset-x) + 526px);
    top:calc(var(--org-offset-y) + 524px);
    width:400px;
    height:66px;
}

[data-org-node="aiManagement"]{
    left:calc(var(--org-offset-x) + 526px);
    top:calc(var(--org-offset-y) + 637px);
    width:400px;
    height:71px;
}

[data-org-node="userSupport"]{
    left:calc(var(--org-offset-x) + 525px);
    top:calc(var(--org-offset-y) + 749px);
    width:401px;
    height:71px;
}

[data-org-node="finance"]{
    left:calc(var(--org-offset-x) + 1007px);
    top:calc(var(--org-offset-y) + 431px);
    width:372px;
    height:72px;
}

[data-org-node="training"]{
    left:calc(var(--org-offset-x) + 1005px);
    top:calc(var(--org-offset-y) + 565px);
    width:377px;
    height:66px;
}

@media(max-width:992px){
    .org-chart-scroll{
        margin-right:-24px;
        padding-right:24px;
    }
}

@media(max-width:576px){
    .org-chart-scroll{
        margin-right:-12px;
        padding-right:12px;
    }

    .structure-section .container{
        padding-left:12px;
        padding-right:12px;
    }
}

.eco-fund-section{
    background:#f3f6f4;
}

.eco-fund-card{
    max-width:1120px;
    margin:0 auto;
    color:#1f2937;
    font-size:18px;
    line-height:1.75;
}

.eco-fund-card p{
    margin-bottom:20px;
}

.eco-fund-card h2{
    margin:32px 0 16px;
    color:#003574;
    font-size:26px;
    font-weight:800;
}

.eco-fund-card h3{
    color:#1f2937;
    font-size:20px;
    font-weight:800;
    margin-bottom:12px;
}

.eco-fund-card ul{
    padding-left:22px;
    margin-bottom:22px;
}

.eco-fund-card li{
    margin-bottom:8px;
}

.eco-fund-card a{
    color:#0b8f4d;
    font-weight:700;
}

.eco-fund-highlight{
    margin:28px 0;
    padding:26px;
    border:1px solid rgba(11,95,165,0.18);
    border-left:6px solid #0B5FA5;
    border-radius:16px;
    background:#EAF2FA;
}

.eco-fund-highlight h2{
    margin-top:0;
}

.eco-fund-figure{
    margin:32px 0;
    padding:14px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:18px;
    background:#fff;
}

.eco-fund-figure img{
    display:block;
    width:100%;
    height:auto;
    border-radius:12px;
}

.eco-fund-figure-narrow{
    max-width:860px;
    margin-left:auto;
    margin-right:auto;
}

.eco-fund-directions{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
    margin:28px 0 32px;
}

.eco-fund-direction{
    padding:24px;
    border:1px solid rgba(11,95,165,0.14);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,0.06);
}

.eco-fund-direction p,
.eco-fund-direction ul{
    margin-bottom:0;
}

@media(max-width:768px){
    .eco-fund-card{
        font-size:16px;
        line-height:1.65;
    }

    .eco-fund-card h2{
        font-size:22px;
    }

    .eco-fund-directions{
        grid-template-columns:1fr;
    }

    .eco-fund-highlight,
    .eco-fund-direction{
        padding:20px;
    }
}

.aarhus-section{
    background:#f3f6f4;
}

.aarhus-card{
    max-width:1180px;
    margin:0 auto;
    color:#1f2937;
    font-size:17px;
    line-height:1.75;
}

.aarhus-card p{
    margin-bottom:18px;
}

.aarhus-card h2{
    margin:0 0 14px;
    color:#003574;
    font-size:22px;
    font-weight:800;
}

.aarhus-card ul,
.aarhus-card ol{
    padding-left:22px;
    margin-bottom:0;
}

.aarhus-card li{
    margin-bottom:8px;
}

.aarhus-intro-grid{
    display:grid;
    grid-template-columns:minmax(260px, 360px) minmax(0, 1fr);
    gap:38px;
    align-items:start;
    margin-bottom:26px;
}

.aarhus-logo{
    grid-column:1;
    position:sticky;
    top:130px;
    margin:0;
    padding:22px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:18px;
    background:#fff;
    box-shadow:0 16px 34px rgba(15,23,42,0.08);
}

.aarhus-intro-text{
    grid-column:2;
    min-width:0;
    padding-top:10px;
}

.aarhus-logo img{
    display:block;
    width:100%;
    max-width:316px;
    margin:0 auto;
    height:auto;
    border-radius:12px;
}

.aarhus-highlight{
    margin-top:22px;
    padding:24px;
    border:1px solid rgba(11,95,165,0.18);
    border-left:6px solid #0B5FA5;
    border-radius:16px;
    background:#EAF2FA;
}

.aarhus-two-columns{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:18px;
    margin:28px 0;
}

.aarhus-panel{
    padding:24px;
    border:1px solid rgba(11,95,165,0.14);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,0.06);
}

.aarhus-panel-wide{
    margin:28px 0;
}

.aarhus-download{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin:28px 0;
    padding:24px;
    border:1px solid rgba(11,95,165,0.18);
    border-radius:16px;
    background:#EAF2FA;
}

.aarhus-download-copy{
    display:flex;
    align-items:center;
    gap:18px;
    min-width:0;
}

.aarhus-download-copy h2{
    margin:0 0 6px;
}

.aarhus-download-copy p{
    margin:0;
}

.aarhus-download-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 58px;
    width:58px;
    height:58px;
    border-radius:14px;
    color:#fff;
    background:#D92D20;
    font-size:17px;
    font-weight:800;
    letter-spacing:.04em;
}

.aarhus-download-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    min-height:46px;
    padding:11px 20px;
    border-radius:12px;
    color:#fff;
    background:#0B5FA5;
    font-weight:700;
    text-align:center;
    text-decoration:none;
    transition:background-color .2s ease, transform .2s ease;
}

.aarhus-download-button:hover{
    color:#fff;
    background:#084B82;
    transform:translateY(-1px);
}

.aarhus-centers-list{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    padding-left:0 !important;
    list-style:none;
}

.aarhus-centers-list li{
    margin:0;
}

.aarhus-centers-list a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    height:100%;
    padding:15px 17px;
    border:1px solid rgba(11,95,165,0.14);
    border-radius:12px;
    color:#003574;
    background:#F7FAFD;
    font-weight:700;
    line-height:1.45;
    text-decoration:none;
    transition:border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.aarhus-centers-list a:hover{
    border-color:rgba(11,95,165,0.36);
    color:#0B5FA5;
    background:#EAF2FA;
    transform:translateY(-1px);
}

.aarhus-center-link-arrow{
    flex:0 0 auto;
    font-size:20px;
}

.aarhus-center-detail-section{
    background:#F3F6F4;
}

.aarhus-center-kicker{
    margin:0 0 8px;
    color:rgba(255,255,255,.82);
    font-size:15px;
    font-weight:700;
    letter-spacing:.02em;
}

.aarhus-center-back{
    display:inline-flex;
    align-items:center;
    margin-bottom:20px;
    color:#0B5FA5;
    font-weight:700;
    text-decoration:none;
}

.aarhus-center-back:hover{
    color:#003574;
}

.aarhus-center-detail{
    padding:34px;
}

.aarhus-center-description{
    color:#263238;
    font-size:17px;
    line-height:1.75;
}

.aarhus-center-description p:last-child,
.aarhus-center-description ul:last-child{
    margin-bottom:0;
}

.aarhus-center-description ul{
    margin:4px 0 0;
    padding-left:24px;
}

.aarhus-center-description li{
    margin-bottom:8px;
}

.aarhus-center-contact{
    margin-top:30px;
    padding:26px;
    border:1px solid rgba(11,95,165,0.18);
    border-radius:16px;
    background:#EAF2FA;
}

.aarhus-center-contact h2{
    margin:0 0 18px;
    color:#003574;
    font-size:22px;
    font-weight:800;
}

.aarhus-center-contact-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
}

.aarhus-contact-item{
    min-width:0;
    padding:16px;
    border-radius:12px;
    background:#fff;
}

.aarhus-contact-item-wide{
    grid-column:1 / -1;
}

.aarhus-contact-item span{
    display:block;
    margin-bottom:5px;
    color:#5A6872;
    font-size:14px;
    font-weight:700;
}

.aarhus-contact-item strong,
.aarhus-contact-item a{
    color:#1F2D36;
    font-size:16px;
    overflow-wrap:anywhere;
}

.aarhus-contact-item a{
    color:#0B5FA5;
    font-weight:700;
    text-decoration:none;
}

.aarhus-contact-item a:hover{
    text-decoration:underline;
}

@media(max-width:992px){
    .aarhus-intro-grid,
    .aarhus-two-columns,
    .aarhus-centers-list{
        grid-template-columns:1fr;
    }

    .aarhus-logo{
        grid-column:1;
        position:static;
        max-width:360px;
        margin:0 auto;
    }

    .aarhus-intro-text{
        grid-column:1;
        padding-top:0;
    }
}

@media(max-width:576px){
    .aarhus-card{
        font-size:16px;
        line-height:1.65;
    }

    .aarhus-download{
        align-items:stretch;
        flex-direction:column;
    }

    .aarhus-download-button{
        width:100%;
    }

    .aarhus-highlight,
    .aarhus-panel{
        padding:20px;
    }

    .aarhus-center-detail{
        padding:22px;
    }

    .aarhus-center-contact{
        padding:20px;
    }

    .aarhus-center-contact-grid{
        grid-template-columns:1fr;
    }

    .aarhus-contact-item-wide{
        grid-column:auto;
    }
}

.seminars-section{
    background:#f3f6f4;
}

.public-hearings-breadcrumbs{
    border-bottom:1px solid rgba(0,53,116,.1);
    background:#fff;
}

.public-hearings-breadcrumbs ol{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
    margin:0;
    padding:15px 0;
    list-style:none;
    color:#65727d;
    font-size:14px;
}

.public-hearings-breadcrumbs li{
    display:inline-flex;
    align-items:center;
    gap:9px;
}

.public-hearings-breadcrumbs li:not(:last-child)::after{
    content:"→";
    color:#9aa5ad;
}

.public-hearings-breadcrumbs a{
    color:#0b5fa5;
    font-weight:600;
    text-decoration:none;
}

.public-hearings-breadcrumbs a:hover{
    text-decoration:underline;
}

.public-hearings-section{
    background:#f3f6f4;
}

.public-hearings-layout{
    display:grid;
    gap:24px;
    max-width:1140px;
}

.hearing-card{
    overflow:hidden;
    border:1px solid rgba(0,53,116,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.hearing-card-header{
    display:flex;
    align-items:center;
    gap:13px;
    padding:18px 24px;
    color:#fff;
    background:#003574;
}

.hearing-card-header i{
    flex:0 0 auto;
    width:26px;
    font-size:21px;
    text-align:center;
}

.hearing-card-header h2{
    margin:0;
    color:inherit;
    font-size:21px;
    font-weight:800;
    line-height:1.35;
}

.hearing-card-body{
    padding:25px 28px;
    color:#263238;
    background:#fbfcfd;
    font-size:16px;
    line-height:1.65;
}

.hearing-card-body a{
    color:#0b5fa5;
    font-weight:700;
    overflow-wrap:anywhere;
    text-decoration:none;
}

.hearing-card-body a:hover{
    text-decoration:underline;
}

.hearing-card-prose p{
    margin:0 0 16px;
}

.hearing-card-prose p:last-child{
    margin-bottom:0;
}

.hearing-contact{
    display:flex;
    align-items:center;
    gap:14px;
    width:fit-content;
    max-width:100%;
    padding:14px 18px;
    border:1px solid rgba(11,95,165,.18);
    border-radius:12px;
    background:#eaf2fa;
}

.hearing-contact-icon{
    display:inline-flex;
    flex:0 0 42px;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:50%;
    color:#fff;
    background:#0b5fa5;
}

.hearing-contact > div{
    display:grid;
    gap:2px;
}

.hearing-contact strong{
    color:#263238;
    font-size:14px;
    line-height:1.35;
}

.hearing-contact a{
    color:#003574;
    font-size:18px;
    font-weight:800;
    line-height:1.4;
    white-space:nowrap;
}

.hearing-check-list{
    display:grid;
    gap:15px;
    margin:0;
    padding:0;
    list-style:none;
}

.hearing-check-list li{
    position:relative;
    min-height:24px;
    padding-left:34px;
}

.hearing-check-list li::before{
    content:"✓";
    position:absolute;
    top:0;
    left:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:23px;
    height:23px;
    border-radius:50%;
    color:#fff;
    background:#2e8b57;
    font-size:14px;
    font-weight:800;
    line-height:1;
}

.hearing-check-list-detailed strong{
    display:block;
    margin-bottom:3px;
    color:#17232c;
    font-weight:800;
}

.hearing-check-list-detailed p{
    margin:0;
}

@media(max-width:576px){
    .public-hearings-breadcrumbs ol{
        padding:12px 0;
        font-size:13px;
    }

    .public-hearings-layout{
        gap:18px;
    }

    .hearing-card{
        border-radius:13px;
    }

    .hearing-card-header{
        align-items:flex-start;
        padding:16px 18px;
    }

    .hearing-card-header h2{
        font-size:18px;
    }

    .hearing-card-body{
        padding:20px 18px;
        font-size:15px;
    }

    .hearing-check-list li{
        padding-left:31px;
    }
}

.ai-page-hero p,
.public-hearings-hero p{
    max-width:1120px;
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.75;
    overflow-wrap:anywhere;
}

.ai-breadcrumbs{
    border-bottom:1px solid rgba(0,53,116,.1);
    background:#fff;
}

.ai-breadcrumbs ol{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:9px;
    margin:0;
    padding:15px 0;
    list-style:none;
    color:#65727d;
    font-size:14px;
}

.ai-breadcrumbs li{
    display:inline-flex;
    align-items:center;
    gap:9px;
}

.ai-breadcrumbs li:not(:last-child)::after{
    content:"→";
    color:#9aa5ad;
}

.ai-breadcrumbs a{
    color:#0b5fa5;
    font-weight:600;
    text-decoration:none;
}

.ai-breadcrumbs a:hover{
    text-decoration:underline;
}

.ai-page-section{
    background:#f3f6f4;
}

.ai-page-layout{
    display:grid;
    gap:28px;
    max-width:1140px;
}

.ai-feature-card{
    overflow:hidden;
    border:1px solid rgba(0,53,116,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 30px rgba(15,23,42,.07);
}

.ai-feature-card-header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:19px 25px;
    color:#fff;
    background:#003574;
}

.ai-feature-card-header i{
    flex:0 0 auto;
    width:28px;
    font-size:22px;
    text-align:center;
}

.ai-feature-card-header h2{
    margin:0;
    color:inherit;
    font-size:22px;
    font-weight:800;
    line-height:1.35;
}

.ai-card-media{
    margin:0;
    padding:24px 24px 0;
    background:#fbfcfd;
}

.ai-card-media img{
    display:block;
    width:100%;
    height:auto;
    border:1px solid rgba(0,53,116,.12);
    border-radius:8px;
    background:#eaf0f5;
}

.ai-card-media figcaption{
    padding:10px 2px 0;
    color:#65727d;
    font-size:13px;
    line-height:1.5;
}

.ai-card-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:9px;
    aspect-ratio:2 / 1;
    margin:24px 24px 0;
    padding:24px;
    border:1px dashed #91acc7;
    border-radius:8px;
    color:#47627b;
    background:linear-gradient(135deg, #eef4fa, #dce8f3);
    text-align:center;
}

.ai-card-placeholder i{
    color:#0b5fa5;
    font-size:36px;
}

.ai-card-placeholder span{
    font-size:14px;
}

.ai-card-placeholder strong{
    color:#003574;
    font-size:20px;
}

.ai-feature-card-body{
    padding:24px 28px 27px;
    color:#263238;
    background:#fbfcfd;
    font-size:16px;
    line-height:1.72;
}

.ai-feature-card-body p{
    margin:0;
}

.ai-final-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:30px;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg, #002956 0%, #003574 55%, #0b5fa5 100%);
    box-shadow:0 18px 38px rgba(0,53,116,.2);
}

.ai-final-card-icon{
    display:flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    color:#ffe89a;
    background:rgba(255,255,255,.12);
    font-size:21px;
}

.ai-final-card h2{
    margin:0 0 10px;
    color:inherit;
    font-size:23px;
    font-weight:800;
    line-height:1.35;
}

.ai-final-card p{
    margin:0;
    color:rgba(255,255,255,.92);
    font-size:16px;
    line-height:1.72;
}

@media(max-width:768px){
    .ai-page-hero p,
    .public-hearings-hero p{
        font-size:16px;
        line-height:1.65;
    }

    .ai-page-layout{
        gap:20px;
    }

    .ai-card-media{
        padding:18px 18px 0;
    }

    .ai-card-placeholder{
        margin:18px 18px 0;
    }

    .ai-final-card{
        padding:24px;
    }
}

@media(max-width:576px){
    .ai-breadcrumbs ol{
        padding:12px 0;
        font-size:13px;
    }

    .ai-feature-card{
        border-radius:13px;
    }

    .ai-feature-card-header{
        align-items:flex-start;
        padding:16px 18px;
    }

    .ai-feature-card-header i{
        width:24px;
        margin-top:2px;
        font-size:19px;
    }

    .ai-feature-card-header h2{
        font-size:18px;
    }

    .ai-card-media{
        padding:14px 14px 0;
    }

    .ai-card-media figcaption{
        font-size:12px;
    }

    .ai-card-placeholder{
        margin:14px 14px 0;
        padding:18px;
    }

    .ai-card-placeholder strong{
        font-size:17px;
    }

    .ai-feature-card-body{
        padding:19px 18px 22px;
        font-size:15px;
        line-height:1.65;
    }

    .ai-final-card{
        flex-direction:column;
        gap:14px;
        padding:22px 19px;
        border-radius:13px;
    }

    .ai-final-card-icon{
        width:42px;
        height:42px;
    }

    .ai-final-card h2{
        font-size:19px;
    }

    .ai-final-card p{
        font-size:15px;
        line-height:1.65;
    }
}

.nbd-hero-kicker{
    display:inline-flex;
    align-items:center;
    margin-bottom:14px;
    padding:7px 13px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.1);
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.nbd-page-hero h1{
    max-width:900px;
    margin-bottom:14px;
}

.nbd-page-hero p{
    max-width:1120px;
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.75;
    overflow-wrap:anywhere;
}

.nbd-page-section{
    background:#f3f6f4;
}

.nbd-page-layout{
    display:grid;
    gap:34px;
    max-width:1140px;
}

.nbd-overview-card{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:24px;
    padding:30px;
    border:1px solid rgba(0,53,116,.12);
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 34px rgba(15,23,42,.07);
}

.nbd-overview-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:62px;
    height:62px;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg,#003574,#0b5fa5);
    box-shadow:0 10px 24px rgba(0,53,116,.2);
    font-size:26px;
}

.nbd-overview-content{
    color:#263238;
    font-size:16px;
    line-height:1.72;
}

.nbd-overview-content p{
    margin:0 0 16px;
}

.nbd-overview-content p:last-child{
    margin-bottom:0;
}

.nbd-components-section{
    display:grid;
    gap:22px;
}

.nbd-section-heading{
    display:flex;
    align-items:center;
    gap:16px;
}

.nbd-section-heading-icon{
    display:flex;
    flex:0 0 auto;
    align-items:center;
    justify-content:center;
    width:52px;
    height:52px;
    border-radius:14px;
    color:#fff;
    background:#003574;
    font-size:21px;
}

.nbd-section-eyebrow{
    display:block;
    margin-bottom:3px;
    color:#2e8b57;
    font-size:13px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.nbd-section-heading h2{
    margin:0;
    color:#17232c;
    font-size:30px;
    font-weight:800;
    line-height:1.25;
}

.nbd-components-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.nbd-component-card{
    display:flex;
    overflow:hidden;
    flex-direction:column;
    min-width:0;
    border:1px solid rgba(0,53,116,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 26px rgba(15,23,42,.06);
    transition:transform .2s ease,box-shadow .2s ease;
}

.nbd-component-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(15,23,42,.1);
}

.nbd-component-card:last-child:nth-child(odd){
    grid-column:1 / -1;
}

.nbd-component-header{
    display:grid;
    grid-template-columns:auto auto minmax(0,1fr);
    align-items:center;
    gap:12px;
    min-height:88px;
    padding:18px 21px;
    color:#fff;
    background:#003574;
}

.nbd-component-number{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    color:#003574;
    background:#fff;
    font-size:14px;
    font-weight:900;
}

.nbd-component-header > i{
    width:25px;
    color:#9dd9b7;
    font-size:20px;
    text-align:center;
}

.nbd-component-header h3{
    min-width:0;
    margin:0;
    color:inherit;
    font-size:18px;
    font-weight:800;
    line-height:1.4;
    overflow-wrap:anywhere;
}

.nbd-component-body{
    flex:1;
    padding:22px 23px 24px;
    color:#34434d;
    background:#fbfcfd;
    font-size:15px;
    line-height:1.7;
}

.nbd-component-body p{
    margin:0;
}

.nbd-responsibilities-card{
    overflow:hidden;
    border:1px solid rgba(0,53,116,.13);
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 34px rgba(15,23,42,.07);
}

.nbd-responsibilities-header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:20px 26px;
    color:#fff;
    background:#003574;
}

.nbd-responsibilities-header i{
    width:27px;
    font-size:22px;
    text-align:center;
}

.nbd-responsibilities-header h2{
    margin:0;
    color:inherit;
    font-size:22px;
    font-weight:800;
    line-height:1.35;
}

.nbd-responsibilities-body{
    padding:27px 28px;
    background:#fbfcfd;
}

.nbd-responsibilities-body ul{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px 28px;
    margin:0;
    padding:0;
    list-style:none;
}

.nbd-responsibilities-body li{
    position:relative;
    min-height:25px;
    padding-left:34px;
    color:#263238;
    font-size:15px;
    line-height:1.6;
}

.nbd-responsibilities-body li::before{
    content:"✓";
    position:absolute;
    top:0;
    left:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:23px;
    height:23px;
    border-radius:50%;
    color:#fff;
    background:#2e8b57;
    font-size:14px;
    font-weight:900;
}

.nbd-cta-card{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:22px;
    padding:30px;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(135deg,#002956 0%,#003574 58%,#0b5fa5 100%);
    box-shadow:0 18px 38px rgba(0,53,116,.2);
}

.nbd-cta-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:54px;
    height:54px;
    border-radius:50%;
    color:#aee3c5;
    background:rgba(255,255,255,.12);
    font-size:21px;
}

.nbd-cta-content h2{
    margin:0 0 7px;
    color:inherit;
    font-size:23px;
    font-weight:800;
}

.nbd-cta-content p{
    margin:0;
    color:rgba(255,255,255,.88);
    font-size:15px;
    line-height:1.6;
}

.nbd-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:50px;
    padding:12px 20px;
    border:2px solid #fff;
    border-radius:12px;
    color:#003574;
    background:#fff;
    font-weight:800;
    text-decoration:none;
    transition:background .2s ease,color .2s ease;
}

.nbd-cta-button:hover{
    color:#fff;
    background:transparent;
}

@media(max-width:991px){
    .nbd-components-grid,
    .nbd-responsibilities-body ul{
        grid-template-columns:1fr;
    }

    .nbd-component-card:last-child:nth-child(odd){
        grid-column:auto;
    }

    .nbd-cta-card{
        grid-template-columns:auto minmax(0,1fr);
    }

    .nbd-cta-button{
        grid-column:1 / -1;
        justify-self:start;
    }
}

@media(max-width:576px){
    .nbd-page-hero p{
        font-size:16px;
        line-height:1.65;
    }

    .nbd-page-layout{
        gap:26px;
    }

    .nbd-overview-card{
        grid-template-columns:1fr;
        gap:17px;
        padding:21px 18px;
        border-radius:14px;
    }

    .nbd-overview-icon{
        width:50px;
        height:50px;
        border-radius:13px;
        font-size:21px;
    }

    .nbd-overview-content{
        font-size:15px;
        line-height:1.65;
    }

    .nbd-section-heading{
        align-items:flex-start;
        gap:12px;
    }

    .nbd-section-heading-icon{
        width:44px;
        height:44px;
        border-radius:12px;
        font-size:18px;
    }

    .nbd-section-eyebrow{
        font-size:11px;
    }

    .nbd-section-heading h2{
        font-size:23px;
    }

    .nbd-components-grid{
        gap:16px;
    }

    .nbd-component-card{
        border-radius:13px;
    }

    .nbd-component-header{
        grid-template-columns:auto minmax(0,1fr);
        min-height:0;
        padding:16px 17px;
    }

    .nbd-component-header > i{
        display:none;
    }

    .nbd-component-header h3{
        font-size:17px;
    }

    .nbd-component-number{
        width:31px;
        height:31px;
        font-size:13px;
    }

    .nbd-component-body{
        padding:19px 18px 21px;
        font-size:15px;
        line-height:1.65;
    }

    .nbd-responsibilities-card{
        border-radius:14px;
    }

    .nbd-responsibilities-header{
        align-items:flex-start;
        padding:17px 18px;
    }

    .nbd-responsibilities-header h2{
        font-size:18px;
    }

    .nbd-responsibilities-body{
        padding:21px 18px;
    }

    .nbd-responsibilities-body li{
        padding-left:31px;
        font-size:15px;
    }

    .nbd-cta-card{
        grid-template-columns:1fr;
        gap:15px;
        padding:23px 19px;
        border-radius:14px;
    }

    .nbd-cta-icon{
        width:46px;
        height:46px;
    }

    .nbd-cta-content h2{
        font-size:20px;
    }

    .nbd-cta-button{
        grid-column:auto;
        justify-self:stretch;
    }
}

.administrative-hero .container,
.administrative-documents-hero .container{
    max-width:1140px;
}

.administrative-hero-kicker{
    display:inline-flex;
    margin-bottom:14px;
    padding:7px 13px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.1);
    font-size:13px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.administrative-hero h1,
.administrative-documents-hero h1{
    margin-bottom:14px;
}

.administrative-hero p,
.administrative-documents-hero p{
    max-width:920px;
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.65;
}

.administrative-section,
.administrative-documents-section{
    background:#f3f6f4;
}

.administrative-layout,
.administrative-documents-layout{
    display:grid;
    gap:26px;
    max-width:1140px;
}

.administrative-intro,
.administrative-documents-intro{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:24px 26px;
    border:1px solid rgba(0,53,116,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.administrative-intro > i,
.administrative-documents-intro > i{
    flex:0 0 auto;
    width:27px;
    margin-top:1px;
    color:#0b5fa5;
    font-size:23px;
    text-align:center;
}

.administrative-intro p,
.administrative-documents-intro p{
    margin:0;
    color:#34434d;
    font-size:16px;
    line-height:1.7;
}

.administrative-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.administrative-card{
    display:flex;
    min-width:0;
    min-height:300px;
    padding:32px 30px 27px;
    border:1px solid rgba(0,53,116,.12);
    border-radius:18px;
    flex-direction:column;
    color:#263238;
    background:#fff;
    box-shadow:0 13px 32px rgba(15,23,42,.07);
    text-decoration:none;
    transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.administrative-card:hover{
    transform:translateY(-5px);
    border-color:rgba(11,95,165,.35);
    color:#263238;
    box-shadow:0 19px 40px rgba(15,23,42,.12);
}

.administrative-card-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin-bottom:22px;
    border-radius:16px;
    color:#fff;
    background:linear-gradient(135deg,#003574,#0b5fa5);
    box-shadow:0 10px 23px rgba(0,53,116,.2);
    font-size:23px;
}

.administrative-card-content{
    display:block;
}

.administrative-card-content strong{
    display:block;
    margin-bottom:10px;
    color:#17232c;
    font-size:21px;
    font-weight:800;
    line-height:1.35;
}

.administrative-card-content > span{
    display:block;
    color:#596872;
    font-size:15px;
    line-height:1.65;
}

.administrative-card-action{
    display:flex;
    align-items:center;
    gap:9px;
    margin-top:auto;
    padding-top:22px;
    color:#0b5fa5;
    font-size:14px;
    font-weight:800;
}

.administrative-card:hover .administrative-card-action i{
    transform:translateX(3px);
}

.administrative-card-action i{
    transition:transform .2s ease;
}

.administrative-document-list{
    display:grid;
    gap:16px;
}

.administrative-back-link{
    display:inline-flex;
    align-items:center;
    justify-self:start;
    gap:9px;
    color:#0b5fa5;
    font-size:16px;
    font-weight:800;
    text-decoration:none;
    transition:color .2s ease,transform .2s ease;
}

.administrative-back-link span{
    font-size:20px;
    line-height:1;
}

.administrative-back-link:hover{
    transform:translateX(-3px);
    color:#003574;
    text-decoration:underline;
}

.administrative-document-card{
    display:grid;
    grid-template-columns:auto auto minmax(0,1fr) auto;
    align-items:center;
    gap:20px;
    padding:23px 24px;
    border:1px solid rgba(0,53,116,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.administrative-document-year{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:67px;
    height:38px;
    padding:0 12px;
    border-radius:999px;
    color:#fff;
    background:#2e8b57;
    font-size:15px;
    font-weight:900;
}

.administrative-document-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:14px;
    color:#fff;
    background:#0b5fa5;
    font-size:22px;
}

.administrative-document-content{
    min-width:0;
}

.administrative-document-content h2{
    margin:0 0 6px;
    color:#17232c;
    font-size:19px;
    font-weight:800;
    line-height:1.4;
}

.administrative-document-content span{
    color:#65727d;
    font-size:14px;
}

.administrative-download-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:46px;
    padding:10px 17px;
    border:2px solid #0b5fa5;
    border-radius:11px;
    color:#fff;
    background:#0b5fa5;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    white-space:nowrap;
    transition:color .2s ease,background .2s ease;
}

.administrative-download-button:hover{
    color:#0b5fa5;
    background:#fff;
}

@media(max-width:991px){
    .administrative-grid{
        grid-template-columns:1fr;
    }

    .administrative-card{
        min-height:0;
    }

    .administrative-document-card{
        grid-template-columns:auto auto minmax(0,1fr);
    }

    .administrative-download-button{
        grid-column:1 / -1;
        justify-self:start;
    }
}

@media(max-width:576px){
    .administrative-hero p,
    .administrative-documents-hero p{
        font-size:16px;
    }

    .administrative-layout,
    .administrative-documents-layout{
        gap:20px;
    }

    .administrative-intro,
    .administrative-documents-intro{
        gap:13px;
        padding:19px 17px;
        border-radius:14px;
    }

    .administrative-intro > i,
    .administrative-documents-intro > i{
        width:23px;
        font-size:20px;
    }

    .administrative-intro p,
    .administrative-documents-intro p{
        font-size:15px;
        line-height:1.65;
    }

    .administrative-grid{
        gap:16px;
    }

    .administrative-card{
        padding:23px 20px 20px;
        border-radius:14px;
    }

    .administrative-card-icon{
        width:50px;
        height:50px;
        margin-bottom:18px;
        border-radius:14px;
        font-size:20px;
    }

    .administrative-card-content strong{
        font-size:19px;
    }

    .administrative-card-action{
        padding-top:18px;
    }

    .administrative-document-card{
        grid-template-columns:auto minmax(0,1fr);
        gap:15px;
        padding:19px 17px;
        border-radius:14px;
    }

    .administrative-document-year{
        min-width:62px;
        height:35px;
        font-size:14px;
    }

    .administrative-document-icon{
        display:none;
    }

    .administrative-document-content{
        grid-column:1 / -1;
    }

    .administrative-document-content h2{
        font-size:17px;
    }

    .administrative-download-button{
        grid-column:1 / -1;
        justify-self:stretch;
    }
}

.seminars-page{
    display:grid;
    gap:28px;
}

.seminars-lead-card,
.seminars-block,
.seminars-list-card{
    background:#fff;
    border-radius:18px;
    box-shadow:0 14px 36px rgba(15,23,42,0.08);
}

.seminars-lead-card{
    display:grid;
    grid-template-columns:minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap:28px;
    align-items:center;
    overflow:hidden;
}

.seminars-lead-text{
    padding:38px;
    color:#1f2937;
    font-size:18px;
    line-height:1.7;
}

.seminars-lead-text p{
    margin-bottom:18px;
}

.seminars-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.seminars-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:12px 22px;
    border-radius:999px;
    font-weight:800;
    text-decoration:none;
    transition:0.25s;
}

.seminars-btn-primary{
    background:#003574;
    color:#fff;
}

.seminars-btn-primary:hover{
    background:#095b31;
    color:#fff;
}

.seminars-btn-outline{
    border:1px solid rgba(11,95,165,0.35);
    color:#003574;
    background:#EAF2FA;
}

.seminars-btn-outline:hover{
    background:#dff3e7;
    color:#003574;
}

.seminars-hero-image,
.seminars-block figure,
.seminars-contacts figure{
    margin:0;
}

.seminars-hero-image img,
.seminars-block img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.seminars-hero-image img{
    min-height:360px;
}

.seminars-block{
    padding:34px;
    color:#1f2937;
    font-size:17px;
    line-height:1.7;
}

.seminars-block h2,
.seminars-list-card h2{
    margin:0 0 16px;
    color:#003574;
    font-size:28px;
    font-weight:800;
}

.seminars-block h3{
    color:#1f2937;
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
}

.seminars-block ul{
    padding-left:22px;
    margin-bottom:18px;
}

.seminars-block li{
    margin-bottom:8px;
}

.seminars-note{
    margin-bottom:0;
    color:#4b5563;
    font-weight:700;
}

.seminars-split,
.seminars-contacts{
    display:grid;
    grid-template-columns:minmax(0, 1fr) minmax(340px, 0.9fr);
    gap:28px;
    align-items:center;
}

.seminars-split figure,
.seminars-contacts figure{
    overflow:hidden;
    border-radius:16px;
    min-height:280px;
}

.seminars-split-reverse{
    grid-template-columns:minmax(340px, 0.95fr) minmax(0, 1fr);
}

.seminars-format-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
    margin-bottom:22px;
}

.seminars-format-card{
    padding:22px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#EAF2FA;
}

.seminars-format-card p{
    margin:0;
}

.seminars-photo-pair{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
}

.seminars-photo-pair img{
    height:260px;
    border-radius:16px;
}

.seminars-docs{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:28px;
}

.seminars-contacts a{
    color:#0b8f4d;
    font-weight:800;
}

.seminars-list-card{
    max-width:900px;
    margin:0 auto;
    padding:38px;
    color:#1f2937;
    font-size:18px;
    line-height:1.7;
}

.seminars-back-link{
    display:inline-flex;
    margin-bottom:24px;
    color:#003574;
    font-weight:800;
    text-decoration:none;
}

.seminars-list-detail{
    max-width:1120px;
    margin:0 auto;
}

.seminars-list-hero{
    margin:0 0 28px;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 36px rgba(15,23,42,0.08);
}

.seminars-list-hero img{
    display:block;
    width:100%;
    height:auto;
}

.seminars-list-content{
    padding:38px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 36px rgba(15,23,42,0.08);
    color:#1f2937;
    font-size:18px;
    line-height:1.75;
}

.seminars-list-content p{
    margin-bottom:20px;
}

.seminars-list-panel{
    margin:28px 0;
    padding:26px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,0.06);
}

.seminars-list-panel h2{
    margin:0 0 16px;
    color:#003574;
    font-size:24px;
    font-weight:800;
}

.seminars-list-panel ul{
    margin:0;
    padding-left:22px;
}

.seminars-list-panel li{
    margin-bottom:8px;
}

.seminars-list-dates{
    background:#EAF2FA;
    border-left:6px solid #0B5FA5;
}

.seminars-list-contacts a:not(.seminars-btn){
    color:#0b8f4d;
    font-weight:800;
}

.seminars-unavailable{
    text-align:left;
    max-width:760px;
}

.seminars-unavailable p{
    margin:0;
    font-size:18px;
    color:#1f2937;
}

.seminars-language-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.seminars-language-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:58px;
    min-height:42px;
    padding:10px 18px;
    border-radius:999px;
    background:#003574;
    color:#fff;
    font-weight:800;
    text-decoration:none;
}

.seminars-language-actions a:hover{
    background:#095b31;
    color:#fff;
}

@media(max-width:992px){
    .seminars-lead-card,
    .seminars-split,
    .seminars-split-reverse,
    .seminars-contacts,
    .seminars-docs{
        grid-template-columns:1fr;
    }

    .seminars-split-reverse figure{
        order:2;
    }

    .seminars-split-reverse > div{
        order:1;
    }
}

@media(max-width:576px){
    .seminars-lead-text,
    .seminars-block,
    .seminars-list-card,
    .seminars-list-content{
        padding:24px;
        font-size:16px;
    }

    .seminars-block h2,
    .seminars-list-card h2,
    .seminars-list-panel h2{
        font-size:24px;
    }

    .seminars-list-panel{
        padding:20px;
    }

    .seminars-format-grid,
    .seminars-photo-pair{
        grid-template-columns:1fr;
    }

    .seminars-hero-image img,
    .seminars-photo-pair img,
    .seminars-split figure,
    .seminars-contacts figure{
        min-height:0;
        height:auto;
    }
}

.international-section{
    background:#f3f6f4;
}

.international-card{
    max-width:1180px;
    margin:0 auto;
    color:#1f2937;
    font-size:17px;
    line-height:1.75;
}

.international-card p{
    margin-bottom:18px;
}

.international-media-row{
    display:grid;
    grid-template-columns:340px minmax(0, 1fr);
    gap:30px;
    align-items:start;
    margin-bottom:30px;
}

.international-media-row figure{
    margin:0;
    padding:14px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(15,23,42,0.06);
}

.international-media-row img{
    display:block;
    width:100%;
    height:auto;
    border-radius:10px;
}

.international-wide-text{
    grid-column:1 / -1;
}

.international-panel{
    margin-top:8px;
    padding:28px;
    border:1px solid rgba(11,95,165,0.16);
    border-left:6px solid #0B5FA5;
    border-radius:16px;
    background:#EAF2FA;
}

.international-panel h2{
    margin:0 0 16px;
    color:#003574;
    font-size:26px;
    font-weight:800;
}

.international-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.international-links a{
    display:inline-flex;
    align-items:center;
    min-height:42px;
    padding:10px 16px;
    border-radius:999px;
    background:#fff;
    color:#003574;
    font-weight:800;
    text-decoration:none;
    border:1px solid rgba(11,95,165,0.22);
}

.international-links a:hover{
    color:#fff;
    background:#003574;
}

.reports-section{
    background:#F3F7FB;
}

.reports-card{
    font-size:18px;
    line-height:1.72;
}

.reports-kicker{
    color:#0B5FA5;
    font-size:15px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:0;
    margin-bottom:10px;
}

.reports-card h2{
    margin:0 0 24px;
    color:#1f2937;
    font-size:34px;
    font-weight:900;
    line-height:1.2;
}

.reports-card h3,
.reports-card h4{
    color:#003574;
    font-weight:900;
}

.reports-lead{
    padding:24px 28px;
    border-radius:16px;
    background:#EAF2FA;
    border:1px solid rgba(11,95,165,0.18);
    margin-bottom:26px;
}

.reports-lead h3{
    margin:0 0 10px;
    font-size:24px;
}

.reports-lead p,
.reports-panel p,
.reports-detail-section p{
    margin:0 0 14px;
}

.reports-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
    margin-bottom:26px;
}

.reports-panel{
    padding:24px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    box-shadow:0 10px 24px rgba(15,23,42,0.05);
}

.reports-panel h3{
    margin:0 0 14px;
    font-size:23px;
}

.anticorruption-section{
    background:#F3F7FB;
}

.anticorruption-card{
    font-size:18px;
    line-height:1.72;
}

.anticorruption-lead{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:20px;
    align-items:flex-start;
    padding:26px 28px;
    margin-bottom:30px;
    border-radius:16px;
    background:#EAF2FA;
    border:1px solid rgba(11,95,165,0.18);
}

.anticorruption-lead p{
    margin:0;
    color:#374151;
}

.anticorruption-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border-radius:16px;
    background:#003574;
    color:#fff;
    font-weight:900;
    letter-spacing:0;
    box-shadow:0 12px 24px rgba(0,53,116,0.22);
}

.anticorruption-card h2{
    margin:0 0 18px;
    color:#1f2937;
    font-size:30px;
    font-weight:900;
}

.anticorruption-documents{
    display:grid;
    gap:16px;
}

.anticorruption-document{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:18px;
    align-items:center;
    padding:20px 22px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    color:#1f2937;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(15,23,42,0.05);
    transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.anticorruption-document:hover{
    transform:translateY(-2px);
    border-color:rgba(11,95,165,0.34);
    box-shadow:0 16px 30px rgba(15,23,42,0.10);
    color:#1f2937;
}

.anticorruption-document-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:14px;
    background:#FEE2E2;
    color:#B91C1C;
    font-size:24px;
}

.anticorruption-document-content{
    display:grid;
    gap:4px;
}

.anticorruption-document-content strong{
    color:#003574;
    font-size:19px;
    line-height:1.3;
}

.anticorruption-document-content span{
    color:#64748B;
    font-size:16px;
    line-height:1.45;
}

.anticorruption-document-action{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:12px;
    background:#0B5FA5;
    color:#fff;
    font-size:15px;
    font-weight:800;
    white-space:nowrap;
}

.procurements-section{
    background:#F3F7FB;
}

.procurements-card{
    font-size:18px;
    line-height:1.72;
}

.procurements-lead{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:20px;
    align-items:flex-start;
    padding:26px 28px;
    margin-bottom:30px;
    border-radius:16px;
    background:#EAF2FA;
    border:1px solid rgba(11,95,165,0.18);
}

.procurements-lead p{
    margin:0;
    color:#374151;
}

.procurements-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    border-radius:16px;
    background:#003574;
    color:#fff;
    font-weight:900;
    letter-spacing:0;
    box-shadow:0 12px 24px rgba(0,53,116,0.22);
}

.procurements-notice{
    margin-bottom:24px;
    padding:26px 28px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    color:#374151;
}

.procurements-notice p{
    margin:0;
}

.procurements-notice p + p{
    margin-top:10px;
}

.procurements-notice-greeting{
    color:#003574;
    font-size:21px;
    font-weight:900;
}

.procurements-notice a,
.procurements-legal-links a{
    color:#0B5FA5;
    font-weight:750;
    text-decoration:none;
}

.procurements-notice a:hover,
.procurements-legal-links a:hover{
    text-decoration:underline;
}

.procurements-legal-links{
    display:grid;
    gap:10px;
    margin:20px 0 0;
    padding:0;
    list-style:none;
}

.procurements-legal-links a{
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.procurements-legal-links i{
    margin-top:7px;
    font-size:14px;
}

.procurements-card h2{
    margin:0 0 18px;
    color:#1f2937;
    font-size:30px;
    font-weight:900;
}

.procurements-documents{
    display:grid;
    gap:16px;
}

.procurements-document{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:18px;
    align-items:center;
    padding:20px 22px;
    border:1px solid rgba(11,95,165,0.16);
    border-radius:16px;
    background:#fff;
    color:#1f2937;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(15,23,42,0.05);
    transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.procurements-document:hover{
    transform:translateY(-2px);
    border-color:rgba(11,95,165,0.34);
    box-shadow:0 16px 30px rgba(15,23,42,0.10);
    color:#1f2937;
}

.procurements-document-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:14px;
    background:#DBEAFE;
    color:#0B5FA5;
    font-size:24px;
}

.procurements-document-content{
    display:grid;
    gap:4px;
}

.procurements-document-content strong{
    color:#003574;
    font-size:19px;
    line-height:1.3;
}

.procurements-document-content span{
    color:#64748B;
    font-size:16px;
    line-height:1.45;
}

.procurements-document-action{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:12px;
    background:#0B5FA5;
    color:#fff;
    font-size:15px;
    font-weight:800;
    white-space:nowrap;
}

.vacancies-section{
    background:#F3F7FB;
}

.vacancies-card{
    padding:36px;
}

.vacancies-list{
    display:grid;
    gap:18px;
}

.vacancy-item{
    display:grid;
    grid-template-columns:1fr auto;
    gap:24px;
    align-items:center;
    padding:24px;
    border:1px solid rgba(11,95,165,0.14);
    border-radius:14px;
    background:#fff;
    box-shadow:0 12px 26px rgba(15,23,42,0.06);
}

.vacancy-content h2{
    margin:0 0 12px;
    color:#1f2937;
    font-size:24px;
    font-weight:850;
}

.vacancy-content p{
    margin:0;
    color:#405065;
    font-size:17px;
    line-height:1.65;
}

.vacancy-apply{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-width:160px;
    padding:13px 18px;
    border-radius:999px;
    background:#0B5FA5;
    color:#fff;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 10px 22px rgba(11,95,165,0.18);
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.vacancy-apply:hover{
    transform:translateY(-2px);
    background:#08467d;
    color:#fff;
    box-shadow:0 16px 28px rgba(11,95,165,0.24);
}

.vacancies-empty{
    margin:0;
    color:#405065;
    font-size:20px;
    line-height:1.6;
}

.reports-panel ul{
    margin:0;
    padding-left:20px;
}

.reports-panel li{
    margin-bottom:10px;
}

.reports-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:12px 22px;
    border:0;
    border-radius:999px;
    background:#003574;
    color:#fff;
    font-weight:900;
    box-shadow:0 10px 22px rgba(11,95,165,0.18);
}

.reports-toggle:hover{
    background:#0B5FA5;
}

.reports-expanded{
    margin-top:30px;
    padding-top:24px;
    border-top:1px solid rgba(11,95,165,0.18);
}

.reports-expanded > h3{
    margin:0 0 20px;
    font-size:26px;
}

.reports-detail-section{
    padding:24px 0;
    border-bottom:1px solid rgba(11,95,165,0.12);
}

.reports-detail-section:first-of-type{
    padding-top:0;
}

.reports-detail-section:last-child{
    border-bottom:0;
    padding-bottom:0;
}

.reports-detail-section h4{
    margin:0 0 12px;
    font-size:22px;
}

@media(max-width:992px){
    .international-media-row{
        grid-template-columns:1fr;
    }

    .international-media-row figure{
        max-width:420px;
    }

    .reports-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){
    .international-card{
        font-size:16px;
        line-height:1.65;
    }

    .international-panel{
        padding:22px;
    }

    .international-panel h2{
        font-size:23px;
    }

    .reports-card{
        padding:24px;
        font-size:16px;
        line-height:1.65;
    }

    .reports-card h2{
        font-size:28px;
    }

    .reports-lead,
    .reports-panel{
        padding:20px;
    }

    .anticorruption-card{
        padding:24px;
        font-size:16px;
        line-height:1.65;
    }

    .anticorruption-lead{
        grid-template-columns:1fr;
        padding:22px;
    }

    .anticorruption-card h2{
        font-size:26px;
    }

    .anticorruption-document{
        grid-template-columns:1fr;
        align-items:flex-start;
        padding:20px;
    }

    .anticorruption-document-action{
        width:100%;
        justify-content:center;
    }

    .procurements-card{
        padding:24px;
        font-size:16px;
        line-height:1.65;
    }

    .procurements-lead{
        grid-template-columns:1fr;
        padding:22px;
    }

    .procurements-notice{
        padding:22px;
    }

    .procurements-card h2{
        font-size:26px;
    }

    .procurements-document{
        grid-template-columns:1fr;
        align-items:flex-start;
        padding:20px;
    }

    .procurements-document-action{
        width:100%;
        justify-content:center;
    }

    .vacancies-card{
        padding:24px;
    }

    .vacancy-item{
        grid-template-columns:1fr;
        align-items:flex-start;
        padding:20px;
    }

    .vacancy-content h2{
        font-size:22px;
    }

    .vacancy-apply{
        width:100%;
    }
}

