* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #004158;
}
.vac-send-banner {
    border-radius: 0px 0px 270px 270px;
}
/* Общий класс контейнера */
.container {
    max-width: 1296px;
    margin: 0 auto;
}

.header {
    background-color: #ffffff;
    padding: 0 20px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.header__search {
    display: flex;
    justify-content: flex-end;
}

.header__search--mobile {
    display: none;
}

.header__search--desktop {
    max-width: 1296px;
    display: flex;
    margin: 0 auto;
    margin-bottom: 15px;
}
.header__logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo {
    height: 75px;
    width: auto;
    max-width: 196px;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
    position: relative;
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    color: #004158;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease;
    padding: 8px 12px;
    display: inline-block;
}

.header__nav-link:hover {
    color: #ffffff;
    background-color: #004158;
    border-radius: 0 22px 22px 0;
}

/* Выпадающее меню для "Управляющая компания" */
.header__nav-item--dropdown {
    position: relative;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-radius: 8px;
    list-style: none;
    min-width: 250px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 60px 60px rgba(0, 41, 58, 0.2);
}

.header__nav-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__nav-item--dropdown:hover .header__nav-link {
    color: #ffffff;
    background-color: #004158;
    border-radius: 0 22px 22px 0;
}

.header__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #004158;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header__dropdown-link:hover {
    background-color: #f5f5f5;
    color: #004158;
}

/* Бургер-меню */
.header__nav-item--burger {
    position: relative;
	display: contents;
}

.header__burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.header__burger-btn:hover {
    opacity: 0.7;
}

.header__burger-dot {
    width: 4px;
    height: 4px;
    background-color: #004158;
    border-radius: 50%;
    display: block;
}

.header__burger-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    list-style: none;
    min-width: 180px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.header__nav-item--burger.active .header__burger-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__burger-link {
    display: block;
    padding: 12px 20px;
    color: #004158;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header__burger-link:hover {
    background-color: #f5f5f5;
    color: #004158;
}

.header__right-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header__phone-wrapper {
    position: relative;
}

.header__phone {
    color: #004158;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.2s ease;
    display: block;
    cursor: pointer;
}

.header__phone:hover {
    color: #AECC53;
}

.header__phone-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    min-width: 200px;
}

.header__phone-wrapper:hover .header__phone-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__phone-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #004158;
    transition: color 0.2s ease;
}

.header__phone-item:hover {
    color: #AECC53;
}

.header__phone-number {
    font-size: 16px;
    font-weight: 400;
    color: #004158;
}

.header__phone-item:hover .header__phone-number {
    color: #AECC53;
}

.header__phone-label {
    font-size: 12px;
    font-weight: 400;
    color: #999999;
    margin-top: 2px;
}

.header__phone-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 8px 0;
}

.header__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    min-width: 120px;
}

.header__cabinet-btn {
    background-color: #88b238;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px 0px 0px 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.header__cabinet-btn:hover {
    background-color: #7a9d30;
    transform: translateY(-1px);
}

.header__cabinet-btn:active {
    transform: translateY(0);
}

.header__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    margin-top: 4px;
}

.header__search-btn:hover {
    opacity: 0.7;
}

.header__search-icon {
    width: 28px;
    height: 28px;
    display: block;
}

/* Overlay для боковой панели - не используется, панель выезжает снизу */
.header__sidebar-overlay {
    display: none;
}

/* Боковая панель меню */
.header__sidebar {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    max-height: 0;
    background-color: #ffffff;
    z-index: 10000;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header__sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px 20px;
    gap: 0;
    max-width: 1296px;
    margin: 0 auto;
}

.header__sidebar-link {
    display: block;
    padding: 15px 0;
    color: #004158;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.header__sidebar-link:hover {
    color: #AECC53;
}

/* Мобильная бургер-кнопка */
.header__mobile-burger {
    display: none;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    width: 48px;
    height: 48px;
}

.header__mobile-burger:hover {
    background-color: #f5f5f5;
}

.header__mobile-burger svg {
    width: 24px;
    height: 24px;
}

.header__mobile-burger svg rect {
    fill: #004158;
}

/* Блок баннеров */
.banners {
    position: relative;
    height: 520px;
    overflow: hidden;
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.banners[data-bg-color] {
    background-color: rgb(0, 65, 88);
}

.banners__container {
    padding: 60px 150px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1296px;
    margin: 0 auto;
}

.banners__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.banners__pagination-dot {
    width: 15px;
    height: 15px;
    background-color: #e5eff7;
    border-radius: 0 8px 8px 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
}

.banners__pagination-dot--active {
    background-color: #AECC53;
}

.banners__pagination-dot:hover {
    background-color: #88b238;
}

.banners__slider {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banners__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    visibility: hidden;
}

.banners__slide--active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.banners__content {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    height: 100%;
}

.banners__text {
    flex: 1;
    max-width: 462px;
    color: #ffffff;
}

.banners__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffff;
}

.banners__description {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #a1aeb8;
}

.banners__downloads {
    display: flex;
    gap: 16px;
}

.banners__download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    max-width: 300px;
}

.banners__download-btn:hover {
    background-color: rgba(0, 65, 88, 1);
}

.banners__download-icon {
    width: 149px;
    height: 41px;
    display: block;
    flex-shrink: 0;
}

.banners__download-text {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
}

.banners__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banners__phone-img {
    max-width: 100%;
    height: auto;
    display: block;
}


.banners__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banners__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Фон для второго слайда с изображением офисов */
.banners__slide--office-bg {
    position: relative;
}

/* Когда активен второй слайд с офисами, применяем фон к контейнеру баннера */
.banners__container.banners__container--office-bg {
    background-image: url('image/офисы.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Скрываем стандартный фон SVG когда активен слайд с офисами */
.banners.banners--office-bg .banners__bg {
    display: none;
}

/* Убираем стандартный цвет фона когда активен слайд с офисами */
.banners.banners--office-bg[data-bg-color] {
    background-color: transparent;
}

/* Третий блок - Информация */
.info-section {
    background-color: #e5eff7;
    padding: 50px 0;
    max-width: 1296px;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 0px 237.804px 237.804px 0px;
}

.info-section .container {
    padding: 0 80px;
    border-radius: 0px 237.6px 237.6px 0px;
}


.info-section__title {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.info-section__search {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    max-width: 800px;
}

.info-section__search-input {
    flex: 1;
    padding: 1px 10px;
    border: none;
    font-size: 16px;
    color: #000;
    height: 50px;
    background-color: #ffffff;
    outline: none;
}

.info-section__search-input::placeholder {
    color: #999999;
}

.info-section__search-btn {
    border: none;
    padding: 16px 20px;
    border-radius: 0px 25px 25px 0px;
    background-color: #89b339;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.info-section__search-btn:hover {
    background-color: #9bb848;
}

.info-section__search-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.info-section__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #004158;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-section__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-section__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border: none;
    border-radius: 0px 22.4px 22.4px 0px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.info-section__btn--green {
    background-color: #89b339;
    color: #ffffff;
}

.info-section__btn--green:hover {
    background-color: #adcb53;
}

.info-section__btn--dark {
    background-color: #004158;
    color: #ffffff;
}

.info-section__btn--dark:hover {
    background-color: #003045;
    transform: translateY(-2px);
}

.info-section__btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-section__btn svg {
    width: 22px;
    height: 24px;
    flex-shrink: 0;
}

.info-section__btn--green svg path,
.info-section__btn--green svg .cls-1 {
    fill: #ffffff;
}

.info-section__btn--dark svg path,
.info-section__btn--dark svg .cls-2 {
    stroke: #ffffff;
}

/* Слайдер достижений */
.achievements {
    margin-bottom: 50px;
    padding: 0 20px;
}

.achievements__container {
    max-width: 1296px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.achievements__slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}

.achievements__track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.achievements__slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: block;
    box-sizing: border-box;
}

.achievements__card {
    display: flex;
    border-radius: 225px 0px 0px 225px;
    overflow: hidden;
    min-height: 327px;
    max-height: 327px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.achievements__image {
    flex: 0 0 66.666%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 225px 0px 0px 225px;
    min-height: 327px;
}

.achievements__info {
    flex: 0 0 33.333%;
    background-color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: url('image/meeting-pattern.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.achievements__title {
    font-size: 20.5px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.achievements__text {
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    flex: 1;
}

.achievements__btn-area {
    margin-top: auto;
}

.achievements__btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fff;
    color: #003045;
    text-decoration: none;
    border-radius: 0px 17.5px 17.5px 0px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.achievements__btn:hover {
    background-color: #adcb53;
}

.achievements__pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.achievements__dot {
    width: 15px;
    height: 15px;
    background-color: #e5eff7;
    border-radius: 0 8px 8px 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 0;
}

.achievements__dot--active {
    background-color: #AECC53;
}

.achievements__dot:hover {
    background-color: #88b238;
}

/* Новости */
.news {
    margin-bottom: 50px;
}

.news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.news__tabs {
    display: flex;
    background-color: rgb(229, 239, 247);
    border-radius: 0px 15px 15px 0px;
}

.news__tab {
    padding: 5px 25px;
    border-radius: 0px 15px 15px 0px;
    background-color: rgb(229, 239, 247);
    color: rgb(33, 37, 41);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

/* .news__tab:hover {
    background-color: #005c7e;
    color: rgb(255, 255, 255);
} */

.news__tab--active {
    background-color: #0d4d64;
    color: #ffffff;
}

.news__tab--active:hover {
    background-color: #0d4d64;
}

.news__all {
    padding: 5px 10px;
    background-color: #e5eff7;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 25px 25px 0;
    transition: all 0.2s ease;
}

.news__all:hover {
    background-color: #005c7e;
    color: #fff;
}

.news__viewport {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}

.news__track {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
    touch-action: pan-y;
    width: 100%;
}

.news__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 0;
}

.news__center-image {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 431px;
    height: 432px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 -80px;
}

.news__center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news__card {
    background-color: #02445d;
    color: #ffffff;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 432px;
    max-height: 432px;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}

.news__card-info {
    padding: 50px;
    border-radius: 0 0 145px 145px;
    flex: 1;
    display: flex;
    max-width: 432px;
    flex-direction: column;
}

.news__card--left {
    border-radius: 0 0 216px 0;
    padding: 50px;
}

.news__card--right {
    border-radius: 0 0 0 216px;
    padding: 50px;
}

.news__slide {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
    padding: 0;
    height: 432px;
}

.news__slide[data-type="press"] {
    gap: 20px;
}

.news__card-item {
    display: flex;
    flex-direction: row;
    min-width: 0;
}




.news__card-info--full {
    width: 100%;
    border-radius: 0 0 145px 145px;
}

.news__card-views {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    z-index: 10;
}

.news__card-views svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.8);
}

.news__card-views-count {
    font-weight: 500;
}

.news__card-date {
    font-size: 16px;
    color: #ffffff80;
    margin-bottom: 14px;
    margin-top: 20px;
    display: block;
    font-weight: 400;
}

.news__card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #ffffff;
}

.news__card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news__card-title a:hover {
    color: #AECC53;
}

.news__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    flex: 1;
}

.news__card-likes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    flex-direction: column;
}

.news__card-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.news__card-like-btn:hover {
    transform: scale(1.1);
}

.news__card-like-btn.active .news__card-like-icon {
    fill: #ff6b6b;
}

.news__card-like-icon {
    transition: fill 0.2s ease;
}

.news__card-likes-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.news__card-image {
    flex-shrink: 0;
    width: 432px;
    height: 432px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 145px 145px 0;
}

.news__controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Адаптивность для блока новостей */
@media (max-width: 990px) {
    .news__slide {
        gap: 20px;
        height: auto;
    }
    
    .news__card-item {
        max-width: 100%;
        width: 100%;
    }
    
    .news__card-item--no-image {
        max-width: 100%;
    }
    
    .news__card {
        min-height: auto;
        max-height: none;
    }
    
    .news__card-info {
        max-width: 100%;
    }
    
    .news__card-image {
        width: 150px;
        height: 432px;
    }
    
    .news__card-info--full {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .news__card-image {
        width: 180px;
    }
    
    .news__card-info {
        max-width: 400px;
    }
}

.news__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cfdce6;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.news__dot:hover {
    background-color: #a0b8c8;
}

.news__dot--active {
    background-color: #0d4d64;
    transform: scale(1.2);
}

/* Статистика */
.stats {
    margin-bottom: 50px;
}

.stats__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stats__item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.stats__icon {
    width: 90px;
    height: 90px;
}

.stats__vverh {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats__number {
    font-size: 60px;
    font-weight: 400;
    color: #004158;
}

.stats__label {
    font-size: 28px;
    font-weight: 600;
    color: #004158;
}

.stats__desc {
    font-size: 17px;
    line-height: 25.5px;
    font-weight: 400;
    color: #004158;
    margin: 0;
}

.stats__bottom {
    display: flex;
}

.stats__card {
    background: #02445d url('image/600_people.svg') center/cover no-repeat;
    color: #ffffff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-width: 431px;
}

.stats__card-number {
    font-size: 60px;
    font-weight: 400;
}

.stats__card-label {
    font-size: 28px;
    font-weight: 600;
}

.stats__card-desc {
    font-size: 17px;
    line-height: 25.5px;
    font-weight: 400;
    color: #fff;
    margin: 0;
}

.stats__photo {
    position: relative;
    overflow: hidden;
    border-radius: 0px 185px 185px 0px;
    max-height: 370px;
}

.stats__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Вакансии */
.vacancies {
    margin-bottom: 50px;
}

.vacancies__grid {
    display: flex;
    gap: 40px;
    align-items: start;
}

.vacancies__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vacancies__title {
    font-size: 30px;
    font-weight: 600;
    color: #004158;
    margin: 0;
    line-height: 36px;
}

.vacancies__contacts {
    display: flex;
    gap: 12px;
    font-size: 17px;
    color: #a1aeb8;
    line-height: 1.5;
}

.vacancies__contact {
    display: block;
}

.vacancies__contact a {
    color: #004158;
    text-decoration: none;
    transition: color 0.2s ease;
}

.vacancies__contact a:hover {
    color: #AECC53;
}

.vacancies__list {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.vacancies__link {
    color: #8ab439;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-block;
    width: fit-content;
}

.vacancies__link:hover {
    color: #9bb848;
    border-color: #9bb848;
}

.vacancies__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0px 145px 145px 0px;
    height: 100%;
    max-height: 290px;
    max-width: 431px;
}

.vacancies__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vacancies__button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 5px 30px;
    background-color: #fff;
    color: #004158;
    text-decoration: none;
    border-radius: 0px 17px 17px 0px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.vacancies__button:hover {
    color: #8ab439;
}

/* Адаптивность для вакансий */
@media (max-width: 1024px) {
    .vacancies__grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .vacancies__image-wrap {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .vacancies__title {
        font-size: 28px;
    }
    
    .vacancies__contacts {
        font-size: 14px;
    }
    
    .vacancies__link {
        font-size: 14px;
    }
    
    .vacancies__button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background-color: #004158;
    border-radius: 0;
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Стилизация скроллбара для модального окна */
.modal__content::-webkit-scrollbar {
    width: 8px;
}

.modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.modal__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal__close:hover {
    opacity: 0.7;
}

.modal__title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.modal__label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.modal__input,
.modal__textarea {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.modal__input::placeholder,
.modal__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal__input:focus,
.modal__textarea:focus {
    border-color: #AECC53;
    background-color: rgba(255, 255, 255, 0.15);
}

.modal__textarea {
    resize: vertical;
    min-height: 100px;
}

.modal__select {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    min-height: 120px;
    width: 100%;
}

.modal__select:focus {
    border-color: #AECC53;
    background-color: rgba(255, 255, 255, 0.15);
}

.modal__select option {
    background-color: #004158;
    color: #ffffff;
    padding: 8px;
}

.modal__hint {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.modal__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
}

.modal__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #AECC53;
}

.modal__submit {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background-color: #AECC53;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

.modal__submit:hover {
    background-color: #9bb848;
    transform: translateY(-1px);
}

.modal__submit:active {
    transform: translateY(0);
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }
    
    .header__mobile-burger {
        display: flex;
        order: 3;
    }
    
    .header__right-section {
        order: 2;
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .header__search--mobile {
        display: flex;
    }
    
    .header__search--desktop {
        display: none;
    }
    
    .header {
        position: relative;
    }
    
    .header__sidebar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 0;
        padding-top: 0;
    }
    
    .header__sidebar.active {
        max-height: 500px;
        padding-top: 20px;
    }
    
    .banners {
        height: auto;
        min-height: 520px;
    }
    
    .banners__content {
        flex-direction: column;
        gap: 40px;
        padding: 20px 0;
    }
    
    .banners__title {
        font-size: 36px;
    }
    
    .banners__description {
        font-size: 16px;
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .header__container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header__nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .header__nav-link {
        font-size: 14px;
        padding: 5px 0;
    }
    
    .header__right-section {
        margin-left: auto;
    }
    
    .header__phone {
        display: none;
    }
    
    .header__dropdown {
        position: fixed;
        left: 20px;
        right: 20px;
        width: auto;
    }
    
    .header__burger-menu {
        position: fixed;
        right: 20px;
        width: auto;
        min-width: 200px;
    }
    
    .header__phone-dropdown {
        position: fixed;
        right: 20px;
        width: auto;
        min-width: 200px;
    }
    
    .banners {
        height: auto;
        min-height: auto;
    }
    
    .banners__container {
        padding: 80px 20px 40px;
    }
    
    .banners__content {
        flex-direction: column;
        gap: 30px;
    }
    
    .banners__text {
        order: 2;
    }
    
    .banners__image {
        order: 1;
    }
    
    .banners__title {
        font-size: 28px;
    }
    
    .banners__description {
        font-size: 14px;
    }
    
    .banners__download-btn {
        max-width: 100%;
    }
    
    .banners__pagination {
        top: 20px;
        left: 20px;
    }
    
    .info-section {
        padding: 40px 0;
    }
    
    .info-section .container {
        border-radius: 0 20px 20px 0;
        padding: 0 20px;
    }
    
    .info-section__title {
        font-size: 24px;
    }
    
    .info-section__subtitle {
        font-size: 16px;
    }
    
    .info-section__btn {
        width: fit-content;
        justify-content: center;
    }
    
    .news__header {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 16px;
    }
    
    .news__tabs {
        justify-content: flex-start;
    }
    
    .news__all {
        text-align: center;
    }
    
    .news__slide {
        flex-direction: column;
        padding: 0;
        height: auto;
        gap: 20px;
    }
    
    .news__card-item {
        max-width: 100%;
        width: 100%;
    }
    
    /* Скрываем все карточки кроме первой в каждом слайде */
    .news__card-item:not(:first-child) {
        display: none;
    }
    
    .news__card-item--no-image {
        max-width: 100%;
    }
    
    .news__card {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        margin: 0;
        border-radius: 0;
        min-height: auto;
        max-height: none;
    }
    
    .news__card-info {
        max-width: 100%;
        padding: 30px 20px 130px 20px;
        border-radius: 0px 0px 176.5px 176.5px;
    }
    
    .news__card-image {
        width: 100%;
        height: 200px;
        border-radius: 0;
    }
    
    .news__card-info--full {
        border-radius: 0;
    }
    
    
    .news__card-title {
        font-size: 16px;
    }
    
    .news__card-text {
        font-size: 13px;
    }
    
    .achievements__card {
        flex-direction: column;
        border-radius: 20px 20px 0 0;
    }
    
    .achievements__image {
        flex: 0 0 100%;
        border-radius: 20px 20px 0 0;
        min-height: 250px;
    }
    
    .achievements__info {
        flex: 0 0 100%;
        border-radius: 0 0 20px 20px;
        padding: 30px 20px;
    }
    
    .achievements__title {
        font-size: 16px;
    }
    
    .achievements__text {
        font-size: 14px;
    }
    
    .vacancies__title {
        font-size: 28px;
    }
    
    .vacancies__contacts {
        font-size: 14px;
    }
    
    .vacancies__link {
        font-size: 14px;
    }
    
    .vacancies__button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .modal__content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
        margin: 20px 0;
    }
    
    .modal__title {
        font-size: 24px;
    }
}

/* Подвал */
.footer {
    background-color: #004158;
    padding: 60px 20px 40px 20px;
    margin-top: 50px;
    position: relative;
    width: 100%;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1296px;
    margin: 0 auto;
}

/* Верхняя часть подвала */
.footer__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    display: flex;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 416px;
}

.footer__phones-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.footer__phone {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer__phone:hover {
    color: #AECC53;
}

.footer__phone-number {
    font-size: 30px;
    color: #fff;
    font-weight: 800;
}

.footer__phone-label {
    font-size: 13px;
    color: #a1aeb8;
    line-height: 10px;
    margin-top: 2px;
}

.footer__offices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__offices-title {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer__offices-slider {
    position: relative;
    overflow: hidden;
}

.footer__offices-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
}

.footer__office {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer__office-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.footer__office-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    fill: #ffffff;
    width: 9px;
    height: 12px;
}

.footer__office-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 24px;
}

.footer__office-ext-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__office-ext-wrapper svg {
    flex-shrink: 0;
    width: 5px;
    height: 11px;
    fill: #ffffff;
}

.footer__office-ext {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__office-ext:hover {
    color: #AECC53;
}

.footer__office-hours-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer__office-hours-wrapper svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: #ffffff;
    margin-top: 2px;
}

.footer__office-hours {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer__offices-controls {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer__offices-prev,
.footer__offices-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: color 0.2s ease, opacity 0.2s ease;
    width: 60px;
    height: 60px;
}

.footer__offices-prev:hover,
.footer__offices-next:hover {
    color: #AECC53;
    opacity: 0.8;
}

.footer__offices-prev svg,
.footer__offices-next svg {
    width: 100%;
    height: 100%;
}

.footer__offices-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__offices-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer__offices-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.footer__offices-dot--active {
    background-color: #AECC53;
    transform: scale(1.2);
}

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

.footer__email {
    display: flex;
    gap: 7px;
}

.footer__email-label {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.footer__email-link {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__email-link:hover {
    color: #AECC53;
}

.footer__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 30px 5px 10px;
    background-color: #ffffff;
    color: #004158;
    border: none;
    border-radius: 0px 17px 17px 0px;
    font-size: 17px;
    font-weight: 400;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.footer__action-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.footer__action-btn svg {
    flex-shrink: 0;
    stroke: #004158;
}

.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover {
    opacity: 0.8;
}

.footer__social-link svg {
    width: 100%;
    height: 100%;
}

/* Средняя часть подвала: Навигация */
.footer__middle {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer__nav-list--highlighted {
    margin-top: 20px;
    padding-top: 20px;
}

.footer__nav-link {
    font-size: 17px;
    color: #a1aeb8;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer__nav-link:hover {
    color: #AECC53;
}

.footer__nav-link--highlighted {
    color: #AECC53;
    font-weight: 500;
}

.footer__nav-link--highlighted:hover {
    color: #9bb848;
}

/* Нижняя часть подвала */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__logo {
    height: 57px;
    width: auto;
    max-width: 218px;
    display: block;
}

.footer__social--bottom {
    gap: 16px;
}

.footer__bottom-center {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: #AECC53;
}

.footer__bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__dev {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__dev-logo {
    height: 55px;
    width: auto;
    max-width: 116px;
    display: block;
}

.footer__dev-text {
    color: #a1aeb8;
    font-size: 17px;
    font-weight: 400;
}

.footer__nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 10;
}

.footer__nav-buttons .btn {
    pointer-events: all;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    width: 80px;
    height: 80px;
}

.footer__nav-buttons .btn:hover {
    opacity: 0.7;
}

.footer__nav-buttons .btn svg {
    width: 100%;
    height: 100%;
}

.footer__nav-buttons .btn svg path {
    fill: #ffffff;
    transition: fill 0.2s ease;
}

.footer__nav-buttons .btn:hover svg path {
    fill: #AECC53;
}

/* Адаптивность для подвала */
@media (max-width: 1024px) {
    
    
    .footer__phones-section {
        gap: 20px;
    }
    
    .footer__middle {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer__bottom-left {
        align-items: center;
    }
    
    .footer__bottom-center {
        align-items: center;
    }
    
    .footer__bottom-right {
        justify-content: center;
    }
    
    .footer__dev {
        align-items: center;
    }
    
    .footer__nav-buttons {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        padding: 0;
    }
}
@media (max-width: 1328px) {
    .container {
        padding: 0 12px;
    }
    .achievements__card {
        max-height: 100%;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px;
    }
    .stats__card {
        min-width: 100%;
    }
    .footer__top {
        padding-bottom: 30px;
        flex-wrap: wrap;
        gap: 30px;
    }
    .info-section {
        border-radius: 0px;
    }
    .header__logo {
        height: 42px;
        width: auto;
        max-width: 163px;
        display: block;
    }
    .stats__photo {
        display: none;
    }
    
    .footer__actions {
        align-items: stretch;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__middle {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__logo {
        height: 45px;
        max-width: 170px;
    }
    
    .footer__social-link {
        width: 28px;
        height: 28px;
    }
    
    .footer__link {
        font-size: 12px;
    }
    
    .footer__dev-logo {
        height: 40px;
        max-width: 90px;
    }
    
    .footer__dev-text {
        font-size: 10px;
    }
    
    .footer__nav-buttons .btn {
        width: 60px;
        height: 60px;
    }
}
@media (max-width: 480px) {

    .footer__bottom-left {
        flex-direction: column;
    }
}

/* Страница детальной новости */
.news-detail {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #a1aeb8;
    font-weight: 400;
    flex-wrap: wrap;
}

.breadcrumbs__link {
    color: #999999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
    color: #004158;
}

.breadcrumbs__separator {
    color: #000;
}

.breadcrumbs__current {
    color: #004158;
    font-weight: 500;
}

.news-detail__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.news-detail__date {
    font-size: 16px;
    color: #999999;
    font-weight: 400;
}

.news-detail__views {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999999;
    font-size: 16px;
}

.news-detail__views svg {
    width: 16px;
    height: 16px;
    stroke: #999999;
}

.news-detail__views-count {
    font-weight: 500;
}

.news-detail__content {
    max-width: 800px;
}

.news-detail__text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.news-detail__text:last-child {
    margin-bottom: 0;
}

/* Блок "Смотрите также" */
.news-detail__related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

.news-detail__related-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.news-detail__related-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.news-detail__related-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #004158;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.news-detail__related-link:hover {
    color: #AECC53;
}

.news-detail__related-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Адаптивность для страницы новости */
@media (max-width: 768px) {
    .news-detail {
        padding: 30px 0 60px;
    }
    
    .breadcrumbs {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .news-detail__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .news-detail__meta {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .news-detail__date,
    .news-detail__views {
        font-size: 14px;
    }
    
    .news-detail__text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .news-detail__related {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .news-detail__related-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .news-detail__related-nav {
        align-items: flex-start;
        gap: 16px;
    }
    
    .news-detail__related-link {
        font-size: 14px;
    }
}

/* Страница списка новостей */
.news-page {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
}

.news-page__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.news-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.news-page__filter {
    display: flex;
    align-items: center;
}

.news-page__year-select {
    padding: 10px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 0px 22px 22px 0px;
    background-color: #fff;
    color: #004158;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23004158' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.news-page__year-select:hover {
    border-color: #004158;
}

.news-page__year-select:focus {
    border-color: #AECC53;
}

.news-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-page__item {
    display: block;
}

.news-page__card {
    background-color: #02445d;
    color: #ffffff;
    padding: 0;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 432px;
    max-height: 432px;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}

.news-page__card--no-image {
    border-radius: 0 0 145px 145px;
}

.news-page__card-info {
    padding: 50px;
    border-radius: 0 0 145px 145px;
    flex: 1;
    display: flex;
    max-width: 432px;
    flex-direction: column;
}

.news-page__card-info--full {
    width: 100%;
    border-radius: 0 0 145px 145px;
}

.news-page__card-views {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    z-index: 10;
}

.news-page__card-views svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.8);
}

.news-page__card-views-count {
    font-weight: 500;
}

.news-page__card-date {
    font-size: 16px;
    color: #ffffff80;
    margin-bottom: 14px;
    margin-top: 20px;
    display: block;
    font-weight: 400;
}

.news-page__card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #ffffff;
}

.news-page__card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-page__card-title a:hover {
    color: #AECC53;
}

.news-page__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    flex: 1;
}

.news-page__card-likes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    flex-direction: column;
}

.news-page__card-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.news-page__card-like-btn:hover {
    transform: scale(1.1);
}

.news-page__card-like-btn.active .news-page__card-like-icon {
    fill: #ff6b6b;
}

.news-page__card-like-icon {
    transition: fill 0.2s ease;
}

.news-page__card-likes-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.news-page__card-image {
    flex-shrink: 0;
    width: 432px;
    height: 432px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 145px 145px 0;
}

.news-page__load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.news-page__load-more {
    padding: 12px 32px;
    background-color: #89b339;
    color: #fff;
    border: none;
    border-radius: 0px 17.5px 17.5px 0px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: 'Montserrat', sans-serif;
}

.news-page__load-more:hover {
    background-color: #adcb53;
    transform: translateY(-1px);
}

.news-page__load-more:active {
    transform: translateY(0);
}

.news-page__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.news-page__empty-text {
    font-size: 18px;
    color: #999999;
    font-weight: 400;
    margin: 0;
}

/* Страница "О компании" */
.about-page {
    padding: 40px 0 80px;
    min-height: calc(100vh - 200px);
}

.about-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-page__content {
    margin-bottom: 60px;
}

.about-page__text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.about-page__text p {
    margin-bottom: 20px;
}

.about-page__text p:last-child {
    margin-bottom: 0;
}

.about-page__text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-page__text h2:first-of-type {
    margin-top: 0;
}

.about-page__text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.about-page__text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-page__text li:last-child {
    margin-bottom: 0;
}

.about-page__video {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.about-page__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-page__values {
    margin: 20px 0;
    padding-left: 30px;
}

.about-page__values li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-page__values li:last-child {
    margin-bottom: 0;
}

.about-page__text a {
    color: #004158;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.about-page__text a:hover {
    color: #AECC53;
}

/* Адаптивность для страницы "О компании" */
@media (max-width: 768px) {
    .about-page {
        padding: 30px 0 60px;
    }
    
    .about-page__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-page__text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .about-page__text h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .about-page__text ul {
        padding-left: 20px;
    }
}

/* Блок "Немного фактов о компании" */
.about-facts {
    margin: 60px 0;
}

.about-facts__title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-facts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-facts__item {
    position: relative;
    min-height: 394px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
}

.about-facts__item--blue {
    color: #fff;
}

.about-facts__item--green {
    color: #fff;
}

.about-facts__item--orange {
    color: #fff;
}

.about-facts__item--dark-blue {
    color: #fff;
}

.about-facts__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.about-facts__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-facts__content {
    position: relative;
    z-index: 2;
}

.about-facts__number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-facts__description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* Адаптивность для блока фактов */
@media (max-width: 768px) {
    .about-facts {
        margin: 40px 0;
    }
    
    .about-facts__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .about-facts__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-facts__item {
        min-height: 300px;
        padding: 30px 20px;
        border-radius: 0;
    }
    
    .about-facts__number {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .about-facts__description {
        font-size: 14px;
        max-width: 100%;
    }
}

/* Адаптивность для страницы новостей */
@media (max-width: 768px) {
    .news-page {
        padding: 30px 0 60px;
    }
    
    .news-page__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .news-page__title {
        font-size: 28px;
    }
    
    .news-page__year-select {
        width: 100%;
        max-width: 300px;
    }
    
    .news-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-page__card {
        min-width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        margin: 0;
        border-radius: 0;
        min-height: auto;
        max-height: none;
    }
    
    .news-page__card-info {
        max-width: 100%;
        padding: 30px 20px 130px 20px;
        border-radius: 0px 0px 176.5px 176.5px;
    }
    
    .news-page__card-image {
        width: 100%;
        height: 200px;
        border-radius: 0;
    }
    
    .news-page__card-info--full {
        border-radius: 0;
    }
}

/* Стили для ссылки на PDF в реквизитах */
.requisites__pdf-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-top: 20px;
    max-width: 600px;
}

.requisites__pdf-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: #a1aeb8;
    border-radius: 0px 0px 35px 35px;
    padding: 8px;
    transition: background-color 0.3s ease;
}

.requisites__pdf-link:hover .requisites__pdf-icon {
    background-color: #adcb53;
}

.requisites__pdf-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.requisites__pdf-type {
    font-size: 14px;
    color: #004158;
    font-weight: 500;
}

.requisites__pdf-name {
    font-size: 14px;
    color: #004158;
    font-weight: 400;
}

/* Стили для баннера согласия на cookies */
.cookies-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: #004158;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookies-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}

.cookies-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookies-banner__text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookies-banner__link {
    color: #adcb53;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookies-banner__link:hover {
    color: #8fb03d;
}

.cookies-banner__btn {
    background-color: #e98060;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookies-banner__btn:hover {
    background-color: #d66f4f;
}

.cookies-banner__btn:active {
    background-color: #c45e3e;
}

@media (max-width: 768px) {
    .cookies-banner {
        max-width: 100%;
        border-radius: 0;
        padding: 15px 20px;
    }
    
    .cookies-banner__content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookies-banner__text {
        min-width: 100%;
        text-align: center;
    }
    
    .cookies-banner__btn {
        width: 100%;
    }
}

/* Стили для страницы контактов */
.contacts-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.contacts-page__title {
    font-size: 48px;
    font-weight: 700;
    color: #004158;
    margin-bottom: 40px;
}

.contacts-page__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts-page__section-title {
    font-size: 20px;
    font-weight: 600;
    color: #004158;
    margin-bottom: 15px;
}

.contacts-page__offices-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contacts-page__offices-list li {
    font-size: 16px;
    color: #004158;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contacts-page__offices-list a {
    color: #004158;
    text-decoration: none;
}

.contacts-page__offices-list a:hover {
    text-decoration: underline;
}

.contacts-page__hours {
    font-size: 16px;
    color: #004158;
    margin-bottom: 8px;
}

.contacts-page__phone {
    font-size: 18px;
    font-weight: 600;
    color: #004158;
    margin: 0;
}

.contacts-page__phone a {
    color: #004158;
    text-decoration: none;
}

.contacts-page__phone a:hover {
    text-decoration: underline;
}

.contacts-page__email {
    font-size: 16px;
    color: #004158;
    margin: 0;
}

.contacts-page__email a {
    color: #004158;
    text-decoration: none;
}

.contacts-page__email a:hover {
    text-decoration: underline;
}

/* Секция с картой на всю ширину */
.contacts-page__map-section {
    width: 100%;
    margin: 40px 0 60px 0;
    position: relative;
}

/* Информационная плашка для мобильных (скрыта на десктопе) */
.contacts-page__info-mobile {
    display: none;
}

.contacts-page__map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.contacts-page__map {
    width: 100%;
    height: 100%;
}

/* Информационная плашка поверх карты (для десктопа) */
.contacts-page__info-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    pointer-events: none;
    max-width: calc(100% - 80px);
    max-height: calc(100% - 80px);
    overflow-y: auto;
}

.contacts-page__info-overlay .contacts-page__info {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    max-width: 500px;
    width: 100%;
}

/* Общие стили для плашки с информацией */
.contacts-page__info {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 520px;
    overflow-y: auto;
}

.contacts-page__bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts-page__support-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-page__support-block,
.contacts-page__emergency-block {
    background-color: #ffffff;
}

.contacts-page__support-title,
.contacts-page__emergency-title {
    font-size: 24px;
    font-weight: 700;
    color: #004158;
    margin-bottom: 15px;
}

.contacts-page__support-text,
.contacts-page__emergency-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contacts-page__emergency-hours {
    font-size: 14px;
    color: #999999;
    margin-bottom: 10px;
}

.contacts-page__emergency-phone {
    font-size: 32px;
    font-weight: 700;
    color: #004158;
    margin: 0;
}

.contacts-page__emergency-phone a {
    color: #004158;
    text-decoration: none;
}

.contacts-page__emergency-phone a:hover {
    text-decoration: underline;
}

.contacts-page__form-wrapper {
    background-color: #004158;
    border-radius: 0 0 50px 0;
    padding: 40px;
}

/* Форма на странице контактов использует стили модального окна */
.contacts-page__form-wrapper .modal__form {
    margin: 0;
}

@media (max-width: 1024px) {
    .contacts-page__bottom-section {
        grid-template-columns: 1fr;
    }
    
    .contacts-page__map-wrapper {
        height: 500px;
    }
    
    .contacts-page__info-overlay {
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    /* Показываем мобильную версию плашки */
    .contacts-page__info-mobile {
        display: block;
        margin-bottom: 20px;
        padding: 0 20px;
    }
    
    .contacts-page__info-mobile .contacts-page__info {
        max-height: none;
        margin: 0 auto;
    }
    
    /* Скрываем плашку поверх карты на мобильных */
    .contacts-page__info-overlay {
        display: none;
    }
    
    .contacts-page__map-wrapper {
        height: 400px;
        padding: 0 20px;
    }
    
    .contacts-page__map {
        border-radius: 8px;
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .contacts-page__title {
        font-size: 36px;
    }
    
    .contacts-page__form-wrapper {
        border-radius: 0;
        padding: 30px 20px;
    }
    
    .contacts-page__emergency-phone {
        font-size: 24px;
    }
}

/* Стили для страницы базы знаний */
.knowledge-base-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.knowledge-base-page__title {
    font-size: 48px;
    font-weight: 700;
    color: #004158;
    margin-bottom: 60px;
}

.knowledge-base-page__section {
    margin-bottom: 60px;
}

.knowledge-base-page__section-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.knowledge-base-page__divider {
    height: 2px;
    background-color: #a7b3bc;
    margin-bottom: 30px;
}

.knowledge-base-page__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.knowledge-base-page__list-wrapper {
    flex: 1;
}

.knowledge-base-page__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.knowledge-base-page__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #a1aeb8;
    text-decoration: none;
    font-size: 25px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.knowledge-base-page__link:hover {
    color: #004158;
}

.knowledge-base-page__link svg {
    flex-shrink: 0;
    color: #999999;
    transition: color 0.3s ease;
}

.knowledge-base-page__link:hover svg {
    color: #004158;
}

.knowledge-base-page__link span {
    flex: 1;
}

.knowledge-base-page__image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 0 50% 50% 0;
    overflow: hidden;
    position: relative;
}

.knowledge-base-page__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .knowledge-base-page__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .knowledge-base-page__image-wrapper {
        min-height: 300px;
        border-radius: 12px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .knowledge-base-page__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .knowledge-base-page__section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .knowledge-base-page__list {
        gap: 15px;
    }
    
    .knowledge-base-page__link {
        font-size: 14px;
    }
    
    .knowledge-base-page__image-wrapper {
        min-height: 250px;
    }
}

/* Стили для детальной страницы базы знаний */
.knowledge-detail-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.knowledge-detail-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.knowledge-detail-page__content {
    margin-bottom: 60px;
}

.knowledge-detail-page__text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

.knowledge-detail-page__text p {
    margin-bottom: 20px;
}

.knowledge-detail-page__text p:last-child {
    margin-bottom: 0;
}

.knowledge-detail-page__text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.knowledge-detail-page__text h2:first-of-type {
    margin-top: 0;
}

.knowledge-detail-page__text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.knowledge-detail-page__text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.knowledge-detail-page__text li:last-child {
    margin-bottom: 0;
}

.knowledge-detail-page__text a {
    color: #004158;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.knowledge-detail-page__text a:hover {
    color: #AECC53;
}

@media (max-width: 768px) {
    .knowledge-detail-page {
        padding: 30px 0;
    }
    
    .knowledge-detail-page__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .knowledge-detail-page__text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .knowledge-detail-page__text h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .knowledge-detail-page__text ul {
        padding-left: 20px;
    }
}

/* Стили для страницы тендеров */
.tenders-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.tenders-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.tenders-page__intro {
    margin-bottom: 30px;
}

.tenders-page__intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

.tenders-page__divider {
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 40px;
}

.tenders-page__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.tenders-page__item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.tenders-page__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tenders-page__item-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.tenders-page__item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.tenders-page__documents {
    display: flex;
    gap: 30px;
}

.tenders-page__document-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.tenders-page__document-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: #a1aeb8;
    border-radius: 0px 0px 35px 35px;
    padding: 8px;
    transition: background-color 0.3s ease;
    object-fit: contain;
}

.tenders-page__document-link:hover .tenders-page__document-icon {
    background-color: #adcb53;
}

.tenders-page__document-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tenders-page__document-type {
    font-size: 14px;
    color: #004158;
    font-weight: 500;
}

.tenders-page__document-name {
    font-size: 14px;
    color: #004158;
    font-weight: 400;
}

@media (max-width: 768px) {
    .tenders-page {
        padding: 30px 0;
    }
    
    .tenders-page__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .tenders-page__intro-text {
        font-size: 16px;
    }
    
    .tenders-page__item-title {
        font-size: 20px;
    }
    
    .tenders-page__item-description {
        font-size: 14px;
    }
    
    .tenders-page__list {
        gap: 30px;
    }
}

/* Стили для страницы объектов */
.objects-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.objects-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.objects-page__description {
    margin-bottom: 30px;
}

.objects-page__description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

.objects-page__view-switcher {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.objects-page__view-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #f5f5f5;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.objects-page__view-btn:hover {
    background-color: #e5e5e5;
}

.objects-page__view-btn--active {
    background-color: #004158;
    color: #ffffff;
}

.objects-page__view-btn--active:hover {
    background-color: #003045;
}

.objects-page__view-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.objects-page__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 40px;
}

.objects-page__card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 139.5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
    opacity: 1;
    visibility: visible;
}

.objects-page__card--hidden {
    display: none;
}

.objects-page__card.objects-page__card--filtered {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.95);
}

.objects-page__card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e5e5e5;
    flex-shrink: 0;
}

.objects-page__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.objects-page__card-content {
    background-color: #004158;
    color: #ffffff;
    padding: 25px 35px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.objects-page__card-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.objects-page__card-address:hover {
    color: #adcb53;
}

.objects-page__card-address span {
    display: inline;
}

.objects-page__card-address svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.objects-page__card-address:hover svg {
    transform: translate(2px, -2px);
}

.objects-page__card-city {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.objects-page__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #adcb53;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.objects-page__card-link:hover {
    color: #89b339;
}

.objects-page__card-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.objects-page__card-link:hover svg {
    transform: translate(2px, -2px);
}

.objects-page__card-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.objects-page__card-detail {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.objects-page__card-detail strong {
    font-weight: 600;
}

.objects-page__load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.objects-page__load-more-btn {
    padding: 15px 40px;
    background-color: #004158;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.objects-page__load-more-btn:hover {
    background-color: #003045;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .objects-page__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .objects-page {
        padding: 30px 0;
    }
    
    .objects-page__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .objects-page__description-text {
        font-size: 16px;
    }
    
    .objects-page__view-switcher {
        margin-bottom: 30px;
    }
    
    .objects-page__view-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .objects-page__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .objects-page__card-address {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .objects-page__list {
        grid-template-columns: 1fr;
    }
    
    .objects-page__view-switcher {
        flex-direction: column;
    }
    
    .objects-page__view-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Стили для детальной страницы объекта */
.object-detail-page {
    min-height: 100vh;
    padding: 40px 0;
    background-color: #ffffff;
}

.object-detail-page__title {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.object-detail-page__city {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

/* Краткие характеристики в иконках */
.object-detail-page__stats {
    margin-bottom: 50px;
}

.object-detail-page__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.object-detail-page__stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.object-detail-page__stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-color: #004158;
    background-image: url('image/wallet_bg.svg'); /* здесь можно заменить иконку при необходимости */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    flex-shrink: 0;
}

.object-detail-page__stat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.object-detail-page__stat-label {
    font-size: 13px;
    font-weight: 400;
    color: #666666;
}

.object-detail-page__stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #004158;
}

.object-detail-page__main-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.object-detail-page__section-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.object-detail-page__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #0d6efd;
    text-decoration: none;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.object-detail-page__link:hover {
    color: #adcb53;
}

.object-detail-page__link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.object-detail-page__link:hover svg {
    transform: translate(2px, -2px);
}

.object-detail-page__details-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.object-detail-page__detail-item {
    display: flex;
    gap: 10px;
}

.object-detail-page__detail-label {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.object-detail-page__detail-value {
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.5;
}

.object-detail-page__detail-value a {
    color: #0d6efd;
    text-decoration: none;
}

.object-detail-page__detail-value a:hover {
    color: #adcb53;
    text-decoration: underline;
}

.object-detail-page__detail-value p {
    margin: 0;
    line-height: 1.6;
}

/* Стили для карты */
.object-detail-page__map-section {
    width: 100%;
    margin: 60px 0;
    position: relative;
}

.object-detail-page__info-mobile {
    display: none;
}

.object-detail-page__map-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.object-detail-page__map {
    width: 100%;
    height: 100%;
}

.object-detail-page__info-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    pointer-events: none;
}

.object-detail-page__map-info {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
}

.object-detail-page__map-address {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.object-detail-page__map-name {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

/* Промо-блок мобильного приложения */
.object-detail-page__app-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    width: 100%;
    max-width: 1296px;
    margin: 0 auto 60px auto;
    border-radius: 0 0 260px 260px;
    background-color: #004158;
}

.object-detail-page__app-container {
    padding: 60px 150px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.object-detail-page__app-text {
    max-width: 480px;
    color: #ffffff;
}

.object-detail-page__app-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.object-detail-page__app-description {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.object-detail-page__app-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.object-detail-page__app-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.object-detail-page__app-download-icon {
    height: 44px;
    width: auto;
    display: block;
}

.object-detail-page__app-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.object-detail-page__app-phone {
    height: 420px;
    width: auto;
    display: block;
}

.object-detail-page__app-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.object-detail-page__app-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}

/* Блок контактной информации с логотипом */
.object-detail-page__contact-section {
    margin: 60px 0;
}

.object-detail-page__contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.object-detail-page__contact-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.object-detail-page__contact-description {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.6;
    color: #a1aeb8;
    margin-bottom: 30px;
}

.object-detail-page__contact-phones {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.object-detail-page__phone-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.object-detail-page__phone-label {
    font-size: 17px;
    font-weight: 800;
    color: #a1aeb8;
    margin: 0;
}

.object-detail-page__phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.object-detail-page__phone-number a {
    color: #000;
    font-size: 30px;
    font-weight: 800;
    text-decoration: none;
}

.object-detail-page__phone-number a:hover {
    color: #adcb53;
    text-decoration: underline;
}

.object-detail-page__contact-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.object-detail-page__contact-logo img {
    max-width: 100%;
    height: auto;
}

/* Блок с услугами */
.object-detail-page__services {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.object-detail-page__services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.object-detail-page__service-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.object-detail-page__service-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.object-detail-page__service-address,
.object-detail-page__service-phone,
.object-detail-page__service-hours {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.object-detail-page__service-phone a {
    color: #004158;
    text-decoration: none;
}

.object-detail-page__service-phone a:hover {
    color: #adcb53;
    text-decoration: underline;
}

/* Блок раскрытия информации */
.object-detail-page__disclosure {
    margin: 60px 0;
}

.object-detail-page__documents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.object-detail-page__document-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.object-detail-page__document-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background-color: #a1aeb8;
    border-radius: 0px 0px 35px 35px;
    padding: 8px;
    transition: background-color 0.3s ease;
    object-fit: contain;
}

.object-detail-page__document-link:hover .object-detail-page__document-icon {
    background-color: #adcb53;
}

.object-detail-page__document-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.object-detail-page__document-type {
    font-size: 14px;
    color: #004158;
    font-weight: 500;
}

.object-detail-page__document-name {
    font-size: 14px;
    color: #004158;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .object-detail-page__main-info {
        gap: 40px;
    }
    
    .object-detail-page__contact-content {
        gap: 40px;
    }

    .object-detail-page__app-container {
        padding: 40px 80px;
    }
}

@media (max-width: 768px) {
    .object-detail-page {
        padding: 30px 0;
    }
    
    .object-detail-page__title {
        font-size: 28px;
    }
    
    .object-detail-page__main-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .object-detail-page__map-wrapper {
        height: 400px;
    }
    
    .object-detail-page__info-overlay {
        display: none;
    }
    
    .object-detail-page__info-mobile {
        display: block;
        margin-bottom: 20px;
    }
    
    .object-detail-page__map-info {
        max-width: 100%;
    }
    
    .object-detail-page__contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .object-detail-page__services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .object-detail-page__documents {
        gap: 20px;
    }

    .object-detail-page__app-banner {
        border-radius: 0 0 200px 200px;
        height: auto;
    }

    .object-detail-page__app-container {
        flex-direction: column;
        text-align: left;
        padding: 40px 30px 60px 30px;
    }

    .object-detail-page__app-image {
        order: -1;
    }

    .object-detail-page__app-phone {
        height: 320px;
    }
}

@media (max-width: 485px) {
    .object-detail-page__documents {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .object-detail-page__stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .object-detail-page__app-container {
        padding: 40px 40px;
        gap: 30px;
    }

    .object-detail-page__app-phone {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .object-detail-page__stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .object-detail-page__stats-grid {
        grid-template-columns: 1fr;
    }

    .object-detail-page__app-container {
        padding: 30px 20px 50px 20px;
    }

    .object-detail-page__app-title {
        font-size: 24px;
    }

    .object-detail-page__app-phone {
        height: 280px;
    }
}

/* Стили для карты объектов */
.objects-page__map-wrapper {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.objects-page__map {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .objects-page__map {
        height: 400px;
    }
}