* {
    font-family: var(--general_font_family);
    line-height: 110%;
}

:root {
    --box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    --adv-bg: #F5F6F7;
    --adv-card-bg: #FFFFFF;
    --adv-icon: #C9A646;
    --adv-text: #2B2B2B;
    --adv-muted: #5A6573;
    --adv-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --adv-shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.12);
    --adv-radius: 14px;
    --adv-gap: 24px;
    --adv-maxw: 1200px;
    --team-bg: #1F3A5F;
    --team-text: #ffffff;
    --services-bg: #ffffff;
    --services-text: #2B2B2B;
    --services-muted: #5A6573;
    --services-icon: #C9A646;
    --services-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --services-shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.12);
    --services-radius: 14px;
    --services-gap: 24px;
    --eff-bg: #ffffff;
    --eff-text: #2B2B2B;
    --eff-accent: #C9A646;
    --eff-muted: #5A6573;
    --testimonials-bg: #fff;
    --testimonials-text: #2B2B2B;
    --testimonials-accent: #C9A646;
    --testimonials-muted: #5A6573;
    --switch-accent: #C9A646;
    --switch-text: #2B2B2B;
    --switch-muted: #5A6573;
    --switch-bg: #fff;
    --news-text: #2B2B2B;
    --news-muted: #5A6573;
    --news-accent: #C9A646;
    --news-bg: #fff;
    --news-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    --contact-bg: #fff;
    --contact-text: #2B2B2B;
    --contact-muted: #5A6573;
    --contact-accent: #C9A646;
}

html {
    font-size: 14px;
}

.container {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 50px;
}

header {
    background: var(--header-bg-color);
    position: sticky;
    top: 0;
    transition: box-shadow .3s ease;
    z-index: 99;
}

header.scrolled {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header .container {
    padding: 0;
}

footer {
    background: var(--footer-bg-color);
    color: var(--eff-bg);
}

body {
    background: var(--homepage-bg-color);
}

.sidebar {
    background: var(--sidebar-bg-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    z-index: 100;
    padding: 60px 15px 0 15px;
}

nav a img {
    vertical-align: middle;
    margin-right: 5px;
    max-width: 30px;
}

a {
    color: var(--link-text-color);
}

h1, h2, h3 {
    color: var(--heading-text-color);
}

body {
    color: var(--body-text-color);
}

.btn {
    background: var(--secondary-bg-color);
    padding: 10px 20px;
    display: block;
    width: fit-content;
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    border-radius: var(--button-border-radius);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    font-weight: 500;
}

.btn a {
    color: var(--secondary-text-color);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
}

.btn:hover::after {
    animation: sweep 0.8s forwards;
}

.custom-logo-link {
    max-width: 160px;
}

.custom-logo {
    max-width: 150px;
    max-height: 50px;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

.navigation-sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: var(--sidebar-bg-color);
    color: var(--body-text-color);
    transition: left 0.3s ease-in-out;
    padding: 20px;
    z-index: 2;
}

.navigation-sidebar.open {
    left: 0;
    z-index: 999;
}

.navigation-sidebar__close-button {
    font-size: 1.4rem;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    right: 20px;
    color: var(--body-text-color);
}

.navigation-sidebar__menu {
    margin-top: 50px;
}

.site-header__navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}


.burger-menu--mobile {
    display: none;
}

.burger-menu__button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu__button img {
    width: 30px;
}


.site-header__right-column--mobile {
    display: none;
}


.navigation-component {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}


.navigation-component__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: var(--logo_flex_direction);
    width: 55%;
    justify-content: var(--logo_flex_justify_content);
}


.navigation-component__menu ul {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: center;
}


.navigation-component__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation-component__nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.consult_banner-slider__slide-content {
    height: var(--banner-height);
    padding: 20px 100px;
    border-radius: var(--banner-border-radius);
    display: flex;
    color: var(--banner-text-color);
    align-items: center;
    justify-content: center;
}

.consult_banner-slider__slide_overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    align-items: var(--banner-content-aligment);
    border-radius: var(--banner-border-radius);
    padding: 10px;
    background: var(--text_banner_overlay);
}

.consult_banner-slider__slide-button {
    padding: 20px 100px;
    margin: 20px;
}

.consult_banner-slider__slide-title {
    color: var(--banner-text-color);
    font-size: 4rem;
    margin: 20px;
    font-weight: bold;
}

.consult_banner-slider__slide-description {
    font-size: 3rem;
    margin: 20px;
    font-weight: 500;
    text-align: center;
}

.consult_slider-nav-next,
.consult_slider-nav-prev {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid #188ffa;
    color: #188ffa;
    background: transparent;
    box-shadow: 1px 1px 10px #188ffa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult_container-slider__button {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}

aside .navigation-component__left {
    flex-direction: column;
    width: 100%;
}

aside .navigation-component__menu ul {
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
}

aside .navigation-component__right {
    display: flex;
    justify-content: center;
}

aside .lang-switch {
    margin: 20px auto;
    left: 50%;
    transform: translateX(-50%);
}

.container.container__sidebar {
    display: flex;
    gap: 30px;
}

aside .navigation-component {
    flex-direction: column;
}


.content__section {
    margin: 100px 0;
}

.footer-menu__container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__menu-list a {
    color: #fff;
    font-size: 1rem;
    text-transform: initial;
}


.consult_footer-menu__container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.navigation-component__menu li a, .navigation-sidebar__menu li a {
    color: var(--body-text-color);
    font-size: 1.2rem;
}

.consult_footer__col,
.consult_footer__col--logo {
    flex: 1 1 0;
    box-sizing: border-box;
    padding: 15px;
}

.consult_footer__menu-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
}

.consult_footer__copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--copyright_text_color);
}

.consult_footer__additional-item {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 15px;
}

.consult_footer__col--text {
    font-size: 1rem;
    margin-top: 10px;
}


.container__sidebar .content {
    width: 100%;
    max-width: 1680px;
    padding-left: 250px;
    margin: 0 auto;
}

.container__sidebar .content__section {
    margin: 50px 10px;
}

.consult_faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0px 20px;
}

.consult_faq__item--active .consult_faq__answer {
    max-height: 500px;
    padding: 10px 20px;
}

.consult_faq__question {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1em;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    color: var(--faq-font-color);
    font-weight: 500;
    font-size: 1.4rem;
}

.consult_faq__question:focus {
    outline: none;
}

.consult_faq__item {
    margin-bottom: var(--faq-gap, 20px);
    border-radius: var(--faq-border-radius, 0px);
    background: var(--faq-bg-color, #ffffff);
    color: var(--faq-font-color, #000000);
}

.post-content {
    padding: 0 10px;
}

.contact-form {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-form__container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--contact-form-bg-color);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
}

.consult_contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consult_contact-form__field {
    display: flex;
    flex-direction: column;
}

.consult_contact-form__label {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--contact-label-color);
}

input.consult_contact-form__input,
textarea.consult_contact-form__textarea {
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--contact-input-color);
    font-size: 1rem;
    background: transparent;
    color: var(--contact-placeholder-color);
}

input.consult_contact-form__input::placeholder,
textarea.consult_contact-form__textarea::placeholder {
    color: var(--contact-placeholder-color);
}

input.consult_contact-form__input::-webkit-input-placeholder,
textarea.consult_contact-form__textarea::-webkit-input-placeholder {
    color: var(--contact-placeholder-color);
}

input.consult_contact-form__input:-moz-placeholder,
textarea.consult_contact-form__textarea:-moz-placeholder {
    color: var(--contact-placeholder-color);
}

input.consult_contact-form__input:-ms-input-placeholder,
textarea.consult_contact-form__textarea:-ms-input-placeholder {
    color: var(--contact-placeholder-color);
}

.consult_contact-form__textarea {
    height: 150px;
    max-height: 250px;
}

.consult_contact-form__button {
    padding: 10px 15px;
    font-size: 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.consult_contact-form__button:hover {
    background-color: #0056b3;
}

.consult_contact-form__map {
    margin-top: 20px;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.reviews__title {
    font-size: 1.9rem;
    font-weight: bold;
}

.reviews__item {
    background: var(--reviews_bg_color);
    border-radius: var(--reviews_border_radius);
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: var(--reviews_text_color);
}

.reviews__author {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.reviews__rating {
    color: var(--reviews_stars_color);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.reviews__body {
    font-size: 1.2rem;
    line-height: 1.5;
}

.consult_cookie__container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 555;
    padding: 20px;
    width: 1200px;
    max-width: 1300px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
    background: var(--cookie_bg_color);
    color: var(--cookie_text_color);
}

.consult_cookie__container.hidden {
    opacity: 0;
    visibility: hidden;
}

.consult_cookie__wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.consult_cookie__column:nth-child(1) {
    flex: 1;
}

.consult_cookie__column:nth-child(2) {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consult_cookie__column:nth-child(3) {
    flex: 1;
}

.consult_cookie-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.consult_cookie__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
}


.consult_cookie__button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 20px;
    background: var(--secondary-bg-color);
    color: var(--secondary-text-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    box-shadow: var(--box-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.consult_popup__promo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.popup--active {
    opacity: 1;
    visibility: visible;
}

.consult_popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.consult_popup__content {
    min-height: 300px;
    position: relative;
    width: 50%;
    max-width: 1000px;
    min-width: 300px;
    background: var(--popup_bg_color);
    color: var(--popup_text_color);
    display: flex;
    z-index: 1;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.consult_popup__content:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: linear-gradient(60deg, #f79533, #e3d621, #edea11, #0a32fc, #5073b8, #2926d4, #1113bc, #0f057e);
    z-index: -1;
    animation: blockanimate 3s ease alternate infinite;
    background-size: 300% 300%;
    clip-path: polygon(0% 100%, 10px 100%, 10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px), 10px 100%, 100% 100%, 100% 0%, 0% 0%);
}

@keyframes blockanimate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.consult_popup__content__wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
}

.consult_popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    z-index: 2;
    padding: 0;
}

.consult_popup__image {
    flex: 2;
}

.consult_popup__image img {
    display: block;
    object-fit: cover;
    width: var(--popup_image_width);
    height: var(--popup_image_height);
}

.consult_popup__content__wrapper-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: var(--popup_content_alignment);
    padding: 10px;
}

.consult_popup__timer {
    text-align: center;
    font-weight: 600;
    font-size: 32px;
    margin: 10px;
    animation: blink-smooth 2s ease-in-out infinite;
}

@keyframes blink-smooth {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.consult_popup__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.consult_popup__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.consult_popup__description {
    font-size: 1rem;
    margin-bottom: 20px;
}

@keyframes vibrate {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.back-to-top:hover {
    animation: vibrate 0.3s ease-in-out;
}

.navigation-sidebar__menu li {
    margin-bottom: 15px;
}

.home-page_title {
    font-size: 3.6rem;
    text-align: center;
    margin: 20px 0;
}

.not-found__page-content span {
    font-size: 180px;
}

.not-found-container h1 {
    text-align: center;
}

.not-found__page-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content {
    padding: 10px;
}


.animated-link {
    text-decoration: none;
    color: #333;
    position: relative;
    transition: color 0.4s ease;
}

.animated-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #3413eb, #feb47b);
    transition: width 0.4s ease;
}

.animated-link:hover {
    color: #ff7e5f;
}

.animated-link:hover::after {
    width: 100%;
}

.container__sidebar .main-banner__section,
.main-banner__section {
    margin: 0;
}

.svg-number {
    font-size: 120px;
    font-weight: 700;
    fill: var(--heading-text-color);
    animation: bounce 2s infinite ease-in-out;
}

.svg-number-zero {
    font-size: 120px;
    font-weight: 700;
    fill: var(--body-text-color);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--move-distance)));
    }
}

.lang-switch {
    position: relative;
    display: inline-block;
    min-width: 50px;
}

.lang-switch__current {
    cursor: pointer;
}

.lang-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.lang-item__icon {
    width: 30px;
    height: 25px;
    margin-right: 5px;
    border-radius: var(--button-border-radius);
}

.lang-dropdown__item {
    margin: 5px 0;
}

.lang-switch__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.lang-switch:hover .lang-switch__dropdown,
.lang-switch__dropdown:hover {
    display: block;
}

.lang-switch__dropdown:hover {
    display: block;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.consult_contact-form__notice {
    text-align: center;
    font-size: 18px;
    color: #28a745;
}

.advantages__title {
    margin: 0 0 50px;
    color: var(--adv-text);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.advantages__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--adv-gap);
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.efficiency {
    display: flex;
    flex-wrap: wrap;
    background: var(--eff-bg);
}

.efficiency__image {
    flex: 1 1 50%;
}

.efficiency__image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.efficiency__content {
    flex: 1 1 50%;
    padding: clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.efficiency__title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--eff-text);
}

.progress-item {
    margin-bottom: 24px;
}

.progress-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--eff-text);
}

.progress-bar {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 14px;
}

.progress-fill {
    background: var(--eff-accent);
    height: 100%;
    width: 0;
    transition: width 1.5s ease;
}

@media (max-width: 768px) {
    .efficiency {
        flex-direction: column;
    }

    .efficiency__image,
    .efficiency__content {
        flex: 1 1 100%;
    }
}

@media (min-width: 560px) {
    .advantages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .advantages__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.advantage {
    background: var(--adv-card-bg);
    border-radius: var(--adv-radius);
    box-shadow: var(--adv-shadow);
    padding: 22px 18px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    will-change: transform, box-shadow;
}

.advantage:hover {
    transform: translateY(-2px);
    box-shadow: var(--adv-shadow-hover);
}

.advantage__icon {
    color: var(--adv-icon);
    /* currentColor для SVG */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-inline: auto;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(201, 166, 70, 0.1);
    /* мягкий фон под иконку */
}

.icon {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor;
    /* наследует цвет от .advantage__icon */
}

.advantage__heading {
    margin: 6px 0 6px;
    color: var(--adv-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.advantage__text {
    margin: 0;
    color: var(--adv-muted);
    font-size: 14px;
    line-height: 1.6;
}

.team-presentation {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
}

.team-presentation__content {
    background-color: var(--team-bg);
    color: var(--team-text);
    flex: 1 1 50%;
    padding: clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-presentation__title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.services__title {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.team-presentation__text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.team-presentation__image {
    flex: 1 1 50%;
}

.team-presentation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card {
    background: #fff;
    border-radius: var(--services-radius);
    box-shadow: var(--services-shadow);
    padding: 24px 18px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--services-shadow-hover);
}

.service-card__icon {
    color: var(--services-icon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(201, 166, 70, 0.1);
}

.icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--services-text);
    margin: 8px 0;
}

.service-card__text {
    font-size: 14px;
    color: var(--services-muted);
    line-height: 1.6;
    margin: 0;
}

.services__grid {
    gap: 20px;
    display: grid;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    padding: clamp(24px, 5vw, 64px) 16px;
}

.testimonials__left {
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 20px;
}

.testimonials__title {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 700;
    color: var(--testimonials-text);
    margin-bottom: 20px;
}

.testimonials__nav {
    display: flex;
    gap: 10px;
}

.testimonials__nav button {
    background: none;
    border: 2px solid var(--testimonials-accent);
    color: var(--testimonials-accent);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.testimonials__nav button:hover {
    background: var(--testimonials-accent);
    color: #fff;
}

.testimonials__right {
    flex: 1 1 75%;
    width: 75%;
}

.testimonial {
    background: #f9f9f9;
    border-radius: 12px;
}

.testimonial__text {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--testimonials-text);
    margin-bottom: 16px;
    padding: 20px;
    background: #C9A646;
    border-radius: 10px;
}

.testimonial__author {
    font-weight: 700;
    color: var(--testimonials-text);
    margin-left: 10px;
}

.testimonial__role {
    font-size: 14px;
    color: var(--testimonials-muted);
    margin-left: 10px;
}

.switch-block {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.switch-block__left {
    flex: 1 1 33.333%;
    padding: clamp(24px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.switch-block__title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--switch-text);
}

.switch-block__desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--switch-muted);
    margin-bottom: 24px;
}

.switch-block__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.switch-btn {
    padding: 10px 16px;
    border: 2px solid var(--switch-accent);
    background: transparent;
    color: var(--switch-accent);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.switch-btn:hover {
    background: var(--switch-accent);
    color: #fff;
}

.switch-btn.active {
    background: var(--switch-accent);
    color: #fff;
}

.switch-block__right {
    flex: 1 1 66.666%;
    position: relative;
}

.switch-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.switch-image.active {
    opacity: 1;
    position: relative;
}

.news {
    background: var(--news-bg);
    padding: clamp(32px, 5vw, 72px) 16px;
}

.news__header {
    max-width: var(--news-maxw);
    margin: 0 auto 40px;
    text-align: center;
}

.news__title {
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
    color: var(--news-text);
    margin-bottom: 12px;
}

.news__desc {
    font-size: 16px;
    color: var(--news-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.news__grid {
    max-width: var(--news-maxw);
    margin: 0 auto;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .news__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--news-shadow);
    display: flex;
    flex-direction: column;
}

.news-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--news-text);
    margin: 16px;
}

.news-card__date {
    font-size: 14px;
    color: var(--news-accent);
    margin: 0 16px 8px;
    display: block;
}

.news-card__text {
    font-size: 14px;
    color: var(--news-muted);
    line-height: 1.6;
    margin: 0 16px 16px;
    flex-grow: 1;
}

.news-card__btn {
    display: inline-block;
    margin: 0 16px 16px;
    padding: 8px 16px;
    background: var(--news-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
}

.news-card__btn:hover {
    background: #b28f3d;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    padding: clamp(32px, 5vw, 72px) 16px;
    gap: 32px;
}

.contact__left {
    flex: 1 1 35%;
}

.contact__title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--contact-text);
}

.contact__info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact__info li {
    font-size: 16px;
    color: var(--contact-muted);
    margin-bottom: 12px;
}

.contact__info a {
    color: var(--contact-accent);
    text-decoration: none;
}

.contact__info a:hover {
    text-decoration: underline;
}

.contact__right {
    flex: 1 1 60%;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--contact-text);
}

.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.contact__btn {
    background: var(--contact-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact__btn:hover {
    background: #b28f3d;
}
.section__margin-0
{
    margin: 20px auto;
}
@media (max-width: 768px) {
    .contact {
        flex-direction: column;
    }

    .contact__left, .contact__right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .switch-block {
        flex-direction: column;
    }

    .switch-block__left, .switch-block__right {
        flex: 1 1 100%;
    }

    .switch-block__right {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
    }

    .testimonials__left, .testimonials__right {
        flex: 1 1 100%;
        padding-right: 0;
    }

    .testimonials__nav {
        margin-bottom: 20px;
    }
}

@media (min-width: 600px) {
    .services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .team-presentation {
        flex-direction: column;
    }

    .team-presentation__content,
    .team-presentation__image {
        flex: 1 1 100%;
    }
}



@media (max-width: 1300px) {
    .consult_cookie__container {
        width: 100%;
        padding: 10px;
    }
}

@media screen and (max-width: 1100px) {
    .container {
        width: 100%;
        padding: 10px;
    }
}

@media screen and (max-width: 850px) {
    .burger-menu--mobile {
        display: block;
    }

    .site-header__right-column--mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .navigation-component__menu {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .container__sidebar .content {
        padding: 10px;
    }

    .site-header__nav-buttons {
        display: flex;
        gap: 5px;
    }

    .consult_banner-slider__slide-content {
        padding: 20px 10px;
        max-height: 500px;
    }

    .consult_banner-slider__slide-description {
        margin: 5px;
        font-size: 18px;
    }

    .consult_banner-slider__slide-button {
        padding: 20px;
    }

    .consult_banner-slider__slide-title {
        font-size: 2rem;
        margin: 0px;
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    .consult_cookie__logo {
        max-width: 100px;
    }

    .consult_cookie__button {
        text-align: center;
    }

    .consult_reviews__logo-img {
        flex: 45%;
    }

    .consult_reviews__rating {
        flex: 45%;
    }

    .consult_reviews__description {
        flex: 100%;
    }

    .consult_popup__content {
        width: 80%;
    }
}

@media (max-width: 600px) {
    .consult_cookie__wrapper {
        gap: 20px;
        flex-wrap: wrap;
    }

    .consult_cookie__column:nth-child(1) {
        display: none;
    }

    .consult_cookie__column:nth-child(2) {
        flex: 66%;
    }

    .consult_cookie__column:nth-child(3) {
        flex: 100%;
    }

    .consult_cookie__buttons {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }

    .consult_cookie__button {
        width: 45%;
        padding: 5px 10px;
        font-size: 1rem;
    }

    .consult_cookie__title {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .consult_cookie__description {
        font-size: 12px;
    }

    .consult_cookie__link {
        font-size: 1.2rem;
    }

    .navigation-component__left {
        width: auto;
    }

    .consult_popup__content {
        width: 90%;
    }

    .site-header__navigation-wrapper {
        gap: 10px;
    }


    .contact-form {
        flex-wrap: wrap;
    }

    .consult_popup__content__wrapper {
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .consult_popup__content__wrapper-text {
        flex: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .consult_popup__title {
        margin: 0;
    }

    .consult_popup__content {
        min-height: 80vh;
    }

    .home-page_title {
        font-size: 2rem;
        margin: 10px 0;
    }

    .consult_banner-slider__slide-description {
        margin: 5px;
        font-size: 18px;
    }

    .consult_banner-slider__slide-button {
        padding: 20px;
    }

    .consult_banner-slider__slide-title {
        font-size: 2rem;
        margin: 0px;
    }
}

@media screen and (max-width: 480px) {
    .consult_promo-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }


    .custom-logo-link img {
        width: 100px;
    }

    header .btn {
        padding: 6px 10px;
        font-size: 1rem;
    }
}