<?php
/**
 * Дополнения к стилям Webflow: переключатель языка, TZ-элементы.
 */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

#about,
#products,
#mission,
#map,
#feedback {
    scroll-margin-top: 88px;
}

.site-header .lang-switcher {
    display: flex;
    gap: 0;
    margin-left: 16px;
    flex-shrink: 0;
}
.site-header .lang-btn {
    padding: 4px 10px;
    border: 1px solid #d6e3ff;
    background: #fff;
    color: #4f607f;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    line-height: 20px;
}
.site-header .lang-btn:first-child {
    border-radius: 30px 0 0 30px;
    border-right: 0;
}
.site-header .lang-btn:last-child {
    border-radius: 0 30px 30px 0;
}
.site-header .lang-btn.active {
    background: #3371f2;
    color: #fff;
}

/* Smooth button transitions */
.btn,
.w-button,
button.btn,
input[type="submit"].btn,
.btn-feedback-header,
.site-header .lang-btn {
    transition: background-color .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease, opacity .28s ease;
}

.btn:hover,
.w-button:hover,
.btn-feedback-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(51, 113, 242, .22);
}

.btn:active,
.w-button:active,
.btn-feedback-header:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(51, 113, 242, .16);
    transition-duration: .12s;
}

.btn:not(.btn-outline):not(.btn-outline-catalog):not(.on-first-screen.on-ontomup):hover,
.w-button:not(.btn-outline):not(.btn-outline-catalog):hover {
    background-color: #2860d8;
}

.btn.on-first-screen.on-ontomup:hover {
    background-color: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: #fff;
}

.btn-outline,
.btn-outline-catalog,
.library-filters .btn-outline {
    background: #fff;
}

.btn-outline:hover,
.btn-outline-catalog:hover,
.library-filters .btn-outline:hover {
    background-color: #3371f2;
    color: #fff;
    border-color: #3371f2;
}

.site-header .lang-btn:hover {
    transform: none;
    box-shadow: none;
    background: #ecf2ff;
    color: #003ab0;
}

.site-header .lang-btn.active:hover {
    background: #2860d8;
    color: #fff;
}

/* Header normalization to match corporate example */
.site-header {
    padding: 0;
    border-bottom: 1px solid #e7edf7;
    box-shadow: 0 1px 0 rgba(18, 43, 92, .03);
}
.site-header .container.w-container {
    max-width: 1240px;
}
.site-header .header-content {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 28px;
}
.site-header .logo {
    float: none;
    margin: 0;
    padding: 0;
}
.site-header .logo img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.site-header .main-nav {
    float: none;
    justify-self: center;
    margin: 0;
}
.site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.2;
}
.site-header .nav-links > li {
    margin: 0;
    list-style: none;
}
.site-header .nav-link,
.site-header .nav-link.drop,
.site-header .nav-link.not-active {
    margin: 0;
    padding: 0;
    color: #1f2f4d;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.site-header .nav-link:hover,
.site-header .nav-link.drop:hover {
    color: #003ab0;
}
.site-header .dropdown-toggle {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.site-header .dropdown-icon {
    position: static;
    margin: 0 6px 0 0;
    font-size: 12px;
    color: #7285aa;
}
.header-phone-link,
.btn-feedback-header {
    display: none;
}
.header-phone-link {
    margin-right: 16px;
    font-weight: 700;
    color: #003ab0;
    text-decoration: none;
    white-space: nowrap;
}
.header-phone-link:hover { color: #3371f2; }
.btn-feedback-header {
    margin-right: 8px;
}
.header-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    justify-self: end;
}
@media (max-width: 991px) {
    .site-header .header-content {
        min-height: 64px;
        grid-template-columns: auto auto;
        column-gap: 10px;
    }
    .site-header .main-nav {
        order: 4;
        grid-column: 1 / -1;
        justify-self: stretch;
    }
    .site-header .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0;
    }
    .header-top-row { display: none; }
    .site-header .logo img { width: 48px; height: 48px; }
    .site-header .lang-switcher { margin-left: auto; }
    .site-header .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }
}
.ntbvt-inner-page .page-hero-legacy {
    padding: 48px 0;
    background: #f4f8ff;
    border-bottom: 3px solid #3371f2;
}
.ntbvt-inner-page .page-hero-legacy h1 {
    color: #003ab0;
    margin: 0;
}
.aqueduct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .aqueduct-grid { grid-template-columns: 1fr; } }
.products-featured {
    display: block;
    padding-top: 72px;
    padding-bottom: 64px;
}
.products-featured .h2.on-section-3 {
    max-width: 860px;
    margin: 0 auto 36px;
    text-align: center;
}
.products-featured .container {
    max-width: 1140px;
}
.products-featured .sec-3-row {
    align-items: center;
    gap: 28px;
    margin-bottom: 34px;
}
.products-featured .sec-3-item { width: 50%; }
.products-featured .sec-3-img {
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(10, 45, 120, .12);
}
.products-featured .count { margin-bottom: 8px; }
.products-featured .h3.on-sec-3 { text-align: left; font-size: 52px; line-height: 1.04; }
.products-featured .sec-3-item .btn.w-button {
    margin-top: 16px;
    border-radius: 999px;
    min-width: 212px;
}
@media (max-width: 991px) {
    .products-featured .h2.on-section-3 { margin-bottom: 18px; }
    .products-featured { padding-top: 56px; padding-bottom: 48px; }
    .products-featured .sec-3-row { margin-bottom: 20px; gap: 16px; }
    .products-featured .sec-3-item { width: 100%; }
    .products-featured .h3.on-sec-3 { font-size: 42px; }
}
.aqueduct-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: transform .28s ease, box-shadow .28s ease;
}
.aqueduct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}
.aqueduct-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.aqueduct-card-body { padding: 20px; }
.aqueduct-card h3 { color: #003ab0; margin: 0 0 8px; }
.aqueduct-card p { margin: 0; color: #555; font-size: 16px; line-height: 1.5; }
.aqueduct-card a { color: inherit; text-decoration: none; }

/* Home page normalization */
.section-1 .section-1-title {
    border-bottom: none;
    margin-bottom: 20px;
}
.section-1 .section-item.div-block-2 {
    overflow: hidden;
    background-image: none !important;
}
.section-1 .section-item.div-block-2::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--slide-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform .7s ease;
}
.section-1 .section-item.div-block-2:hover::before {
    transform: scale(1.06);
}
.section-1 .section-item.div-block-2:hover {
    background-image: none !important;
}
.section-1 .section-item.div-block-2 .sec-3-overlay {
    z-index: 1;
}
.section-1 .section-item-content {
    position: relative;
    z-index: 2;
    padding: 36px 34px;
}
.section-1-content.slides-count-2 .section-item { width: 50%; }
.section-1 .h3 { font-size: 42px; line-height: 1.14; }
.section-1 .btn.on-sec-1 { min-width: 178px; border-radius: 999px; }
.section-2 .sec-2-content-text { max-width: 700px; }
.section-2 .sec-2-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.section-2 .features-item {
    flex: 1 1 140px;
    min-width: 140px;
    max-width: calc(33.333% - 16px);
    min-height: 0;
}
.section-2 .h3.on-features {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 8px;
    word-break: break-word;
}
.section-2 .feauter-text {
    font-size: 15px;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .section-2 .features-item {
        max-width: 100%;
    }
}
.home-banner { padding-top: 0; padding-bottom: 28px; }
.home-banner-slider { background: #003ab0; height: 120px; border-radius: 14px; overflow: hidden; }
.home-banner-slide { background: #003ab0; }
.home-banner-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    padding: 0 24px;
}
.section-4 { padding-top: 58px; padding-bottom: 64px; }
.home-news-section .h2.on-section-4 {
    text-align: center;
    margin: 0 auto 28px;
}
.home-news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0;
}
.home-news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-news-card .news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-news-card .sec-3-text { flex: 1; }
.home-news-actions { text-align: center; margin-top: 32px; }
.home-news-actions .btn.w-button { min-width: 190px; border-radius: 999px; }
@media (max-width: 991px) {
    .home-news-grid { grid-template-columns: 1fr; }
}

/* Civilian products page */
.products-page-hero {
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.products-page .first-screen-intro .h1 {
    color: #003ab0;
    max-width: 760px;
}
.products-page .btn.on-first-screen {
    border-radius: 999px;
    min-width: 220px;
}
.products-page .products-head .h2.on-prod {
    color: #003ab0;
    margin-bottom: 12px;
}
.products-page .products-item {
    background: #fff;
    border-radius: 12px;
}
@media (max-width: 991px) {
    .products-page .products-item { width: 100%; }
}

/* Aqueduct system page */
.aqueduct-page .first-screen.on-mems {
    min-height: 88vh;
    background-position: center;
    background-size: cover;
}
.aqueduct-page .first-screen-subtitle.on-mltry-prdcts {
    color: #fff;
    max-width: 640px;
}
.aqueduct-page .btn.on-first-screen {
    border-radius: 999px;
    min-width: 220px;
}
.aqueduct-page .ontomup-img {
    max-width: 100%;
    height: auto;
}
.aqueduct-page .section-2.on-ontomup {
    background: #f4f8ff;
}
.aqueduct-page .products.on-mems {
    background: #fff;
}
.aqueduct-page .products-head .h2.on-prod {
    color: #003ab0;
}
.aqueduct-page .tab-plane img,
.aqueduct-page .tab-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto 0;
}
.aqueduct-page .tab-plane p,
.aqueduct-page .tab-box p,
.aqueduct-page .tab-plane li,
.aqueduct-page .tab-box li {
    color: #555;
    line-height: 1.65;
    font-size: 16px;
}
.aqueduct-page .aqueduct-mobile-tab {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0;
}
.aqueduct-page .aqueduct-mobile-tab.is-open .tab-down-icon-first {
    transform: rotate(0deg);
}
.aqueduct-page .request {
    background: #f4f8ff;
}
.aqueduct-page .btn.on-request {
    border-radius: 999px;
    min-width: 200px;
}
@media (max-width: 991px) {
    .aqueduct-page .aqueduct-tabs.tabs.on-mems {
        display: none !important;
    }
    .aqueduct-page .aqueduct-tabs-mobile {
        display: block;
        margin-top: 28px;
    }
}
.section-5 .sec-5-row { align-items: stretch; gap: 28px; }
.section-5 .map-box { border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(10, 45, 120, .08); }
.section-5 .sec-5-content { border-radius: 14px; padding: 8px 4px; }
.section-5 .sec-5-subtitle {
    margin-bottom: 16px;
}
.section-5 .sec-5-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 24px;
}
.section-5 .sec-5-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a2b4a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    transition: color .2s ease;
}
.section-5 .sec-5-contact-line:hover {
    color: #3371f2;
}
.section-5 .sec-5-contact-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
.section-5 .sec-5-contact-value {
    word-break: break-word;
}
.section-5 .btn.on-sec-5 { border-radius: 999px; min-width: 190px; }
@media (max-width: 991px) {
    .section-1 .h3 { font-size: 34px; }
    .home-banner-slide-content { font-size: 18px; }
    .section-5 .sec-5-row { gap: 16px; }
}

/* Inner pages */
.ntbvt-inner-page .content-page { padding: 48px 0 64px; max-width: 960px; }
.ntbvt-inner-page .content-page h2,
.ntbvt-inner-page .content-page h3 { color: #003ab0; }
.ntbvt-inner-page .content-page p,
.ntbvt-inner-page .content-page li { color: #444; line-height: 1.7; font-size: 16px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width: 767px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #f4f8ff; border-left: 4px solid #3371f2; padding: 24px; margin: 0; }
.review-card cite { display: block; margin-top: 12px; color: #3371f2; font-style: normal; font-weight: 700; }

/* About page — aqueduct-style mission & reviews */
.about-page.aqueduct-page .section-2.on-ontomup:not(.about-mission-section) {
    background: #f4f8ff;
}
.about-page.aqueduct-page .about-mission-section {
    background: #fff;
}
.about-page.aqueduct-page .about-reviews-section {
    background: #fff;
}
.about-page.aqueduct-page .products-head .h2.on-prod {
    color: #003ab0;
    margin-bottom: 28px;
}
.about-page.aqueduct-page .about-mission-content {
    max-width: 920px;
}
.about-page.aqueduct-page .about-mission-block + .about-mission-block {
    margin-top: 32px;
}
.about-page.aqueduct-page .about-mission-section .h3.on-features {
    color: #003ab0;
    text-align: left;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px;
}
.about-page.aqueduct-page .about-mission-section .sec-2-content-text,
.about-page.aqueduct-page .about-mission-editor,
.about-page.aqueduct-page .about-mission-editor p,
.about-page.aqueduct-page .about-mission-editor li,
.about-page.aqueduct-page .about-goals-list li {
    color: #555;
    line-height: 1.65;
    font-size: 16px;
}
.about-page.aqueduct-page .about-mission-editor h3 {
    color: #003ab0;
    font-size: 28px;
    line-height: 1.2;
    margin: 32px 0 12px;
    text-align: left;
}
.about-page.aqueduct-page .about-mission-editor h3:first-child {
    margin-top: 0;
}
.about-page.aqueduct-page .about-goals-list {
    margin: 0;
    padding-left: 22px;
}
.about-page.aqueduct-page .about-goals-list li {
    margin-bottom: 10px;
}
.about-page.aqueduct-page .about-goals-list li:last-child {
    margin-bottom: 0;
}
.about-page.aqueduct-page .about-review-card {
    background: #f4f8ff;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 0;
}
.about-page.aqueduct-page .about-review-card p {
    margin: 0;
    color: #555;
    line-height: 1.65;
    font-size: 16px;
}
.about-page.aqueduct-page .about-review-card cite {
    display: block;
    margin-top: 16px;
    color: #3371f2;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
}
.contacts-page-grid { align-items: flex-start; }
.contacts-details .contact-block { margin-bottom: 24px; }
.contacts-details a { color: #3371f2; }
.map-box iframe, .map-large iframe { width: 100%; min-height: 400px; border: 0; }
.library-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 32px;
}
.library-filters .btn,
.library-filters .btn.w-button {
    width: auto !important;
    min-width: 0;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: 999px;
}
.library-filters .btn-outline {
    background: #fff;
    color: #3371f2;
    border: 1px solid #d6e3ff;
}
.product-detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; margin-top: 24px; }
@media (max-width: 991px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-sidebar { background: #f4f8ff; padding: 24px; border-radius: 4px; }
.product-detail-content {
    min-height: 320px;
}
.product-detail-content.content-page {
    max-width: none;
    width: 100%;
    padding: 0;
}
.product-detail-content .product-content {
    margin-bottom: 10px;
}
.product-fallback-wrap {
    padding: 0;
    border: 0;
    background: transparent;
}
.product-fallback-content p {
    margin: 0 0 12px;
}
.product-fallback-content .product-info-block {
    background: #f4f8ff;
    border: 1px solid #dbe7ff;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
}
.product-fallback-content .product-info-block:last-child {
    margin-bottom: 0;
}
.product-fallback-content .product-info-block h3 {
    margin: 0 0 8px;
    color: #1f35a7;
    font-size: 28px;
    line-height: 1.2;
}
.product-fallback-content .product-inline-list {
    margin: 8px 0 0;
    padding-left: 22px;
}
.product-fallback-content .product-inline-list li {
    margin-bottom: 8px;
    color: #33456b;
    line-height: 1.45;
}
.product-children-list { list-style: none; padding: 0; margin: 16px 0 0; }
.product-children-list > li { margin-bottom: 12px; }
.product-children-list a { color: #003ab0; text-decoration: none; font-weight: 700; }
.product-children-list a:hover { color: #3371f2; }
.product-children-list.additional-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 14px 0 0;
}
.product-additional-modules {
    margin-top: 16px;
    padding-top: 6px;
}
.product-additional-modules .h3.on-sec-3 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.1;
}
.product-children-list.additional-list > li {
    margin-bottom: 10px;
    color: #33456b;
    font-weight: 500;
    line-height: 1.45;
}
.product-grandchildren { list-style: disc; margin: 8px 0 0 20px; padding: 0; }
.product-grandchildren a { font-weight: 400; }
.child-code, .catalog-code, .catalog-code-lg { color: #3371f2; font-weight: 700; }
.catalog-code-lg { font-size: 20px; margin-bottom: 8px; }
.breadcrumb {
    margin-top: 14px;
}
.breadcrumb a { color: #3371f2; }
.product-hero-img { max-width: 420px; }
.product-cta {
    margin-top: 12px;
    margin-bottom: 42px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.product-cta .btn.w-button {
    min-width: 190px;
    border-radius: 999px;
}
.product-cta .btn-outline-catalog {
    background: #fff;
    color: #3371f2;
    border: 1px solid #3371f2;
}
.catalog-hub {
    padding-top: 48px;
    padding-bottom: 64px;
    background: #fff;
}
.catalog-hub .products-content {
    width: 100%;
}
.catalog-hub .products-row {
    padding-top: 0;
}
.catalog-hub .products-item.catalog-anchor {
    scroll-margin-top: 100px;
}
.catalog-hub .products-item {
    background: #fff;
    border-radius: 12px;
}
.services-catalog-page .page-hero-legacy {
    padding-bottom: 28px;
}
@media (max-width: 991px) {
    .catalog-hub .products-item { width: 100%; }
}
.product-detail.ntbvt-inner-page {
    padding-bottom: 24px;
}
.about-block { margin-bottom: 48px; }
.pagination {
    grid-column: 1 / -1;
    margin-top: 28px;
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    margin: 0 6px;
    border-radius: 999px;
    border: 1px solid #d8e3ff;
    background: #fff;
    color: #3371f2;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}
.pagination .page-numbers.current {
    background: #3371f2;
    color: #fff;
    border-color: #3371f2;
}
.pagination a.page-numbers:hover {
    background: #ecf2ff;
    border-color: #aac3ff;
}
.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    min-width: 96px;
}
.news-list-grid {
    padding: 40px 0 56px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: center;
    gap: 18px;
}
.news-list-card {
    border-radius: 18px;
    overflow: hidden;
}
.news-list-card .news-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.news-list-card .aqueduct-card-body { padding: 16px 18px 18px; }
.news-list-card time { display: inline-block; margin-bottom: 10px; color: #6f7f9f; font-size: 14px; }
.news-list-card .h3.on-sec-3 { font-size: 22px; line-height: 1.25; text-align: left; margin-bottom: 8px; }
.news-list-card .h3.on-sec-3 a { color: #003ab0; text-decoration: none; }
.news-list-card .h3.on-sec-3 a:hover { color: #3371f2; }
.news-list-card .sec-3-text { font-size: 15px; line-height: 1.55; }
.news-list-card .btn.w-button {
    margin: 12px auto 0;
    width: 190px;
    height: 44px;
    min-width: 190px;
    border-radius: 999px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-align: center;
}
.news-list-card .btn.w-button:hover { color: #fff; }

/* Single news page */
.single-news-page .page-hero-legacy { padding: 36px 0; }
.single-news-date {
    display: inline-block;
    margin-bottom: 8px;
    color: #6f7f9f;
    font-size: 15px;
    font-weight: 600;
}
.single-news-card {
    margin: 34px auto 56px;
    max-width: 920px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(10, 45, 120, .08);
    overflow: hidden;
}
.single-news-card .article-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.single-news-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 44px 40px;
}
.single-news-content p,
.single-news-content li {
    font-size: 20px;
    line-height: 1.65;
    color: #4f5f79;
}
.single-news-content h2,
.single-news-content h3 { color: #003ab0; }
.single-news-content ul,
.single-news-content ol {
    padding-left: 34px;
    margin: 12px 0 18px;
}
.single-news-content li { padding-left: 4px; }
.single-news-back {
    margin-top: 16px;
    min-width: 220px;
    border-radius: 999px;
}
@media (max-width: 767px) {
    .single-news-content {
        padding: 24px 20px 28px;
    }
}

/* Footer contact icons alignment */
.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-adress,
.footer-contact-line {
    position: relative;
}
.footer-adress {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}
.footer-adress .footer-icon,
.footer-contact-line .footer-icon {
    position: static !important;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    margin: 0;
    display: block;
}
.footer-contact-line .footer-contacts-text {
    padding-left: 0;
    margin-bottom: 0;
    display: inline-block;
}
.footer-adress .footer-contacts-text {
    padding-left: 0;
    margin-bottom: 0;
    display: block;
    line-height: 1.45;
}
