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-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;
}

.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;
    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{
    width:100%;
    max-height:520px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

.news-detail-extra-img{
    width:100%;
    max-width:850px;
    max-height:620px;
    object-fit:contain;
    border-radius:16px;
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

.news-detail-content{
    font-size:19px;
    line-height:1.8;
    color:#1f2937;
    word-break:break-word;
    overflow-wrap:break-word;
}

.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-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;
    }

    .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;
}

.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;
    }
}

.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-centers-list{
    columns:2;
    column-gap:34px;
}

@media(max-width:992px){
    .aarhus-intro-grid,
    .aarhus-two-columns{
        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-highlight,
    .aarhus-panel{
        padding:20px;
    }

    .aarhus-centers-list{
        columns:1;
    }
}

.seminars-section{
    background:#f3f6f4;
}

.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;
}

.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;
    }
}

