:root {
    --primary-magenta: #e20074;
    --primary-magenta-hover: #c20063;
    --primary-teal: #008285;
    --text-main: #000000;
    --text-muted: #666666;
    --bg-light: #f5f7f9;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --font-family: 'Titillium Web', sans-serif;
    --border-radius-lg: 30px;
    --border-radius-md: 20px;
    --box-shadow: 0px 2px 16px 0px rgba(17, 17, 17, 0.16);
}

#id_0f228c20-7bbf-4ee6-b9c8-5f0e83fafe88 .sc-richtext{
    width: 100%;
}

.container-w {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-magenta);
}

.btn--primary {
    background-color: var(--primary-magenta);
    color: white;
}

.btn--primary:hover {
    background-color: var(--primary-magenta-hover);
    border-color: var(--primary-magenta-hover);
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-magenta);
}

.btn--outline:hover {
    background-color: #e2007a;
    color: white;
    border-color: #e2007a;
}

.hero-banner {
    height: 350px;
    position: relative;
    overflow: hidden;
    padding: 0px 15px;
}

.hero-banner__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    padding: 24px 15px;
}

.hero-banner__content {
    max-width: 600px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.hero-banner__breadcrumbs {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-banner__breadcrumb-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hero-banner__breadcrumb-link:hover {
    color: #e2007a;
}

.hero-banner__breadcrumb-separator {
    width: 6px;
    height: auto;
    transform: translateY(1px);
}

.hero-banner__breadcrumb-current {
    color: var(--text-main);
}

.hero-banner__title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 24px;
    margin-bottom: 24px;
}

.hero-banner__subtitle {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-banner__subtitle strong {
    font-weight: 600;
}

.hero-banner__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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


.target-group {
    padding: 30px 15px;
}

.section-title {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-main);
}

.target-group__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.target-card {
    background-color: #FAFAFA;
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
}

.target-card__icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.target-card__icon {
    width: 100%;
    height: 100%;
}

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

.target-card__title {
    font-size: 2rem;
    font-weight: 600;
}

.target-card__text {
    font-size: 1.8rem;
    color: var(--text-main);
    line-height: 1.4;
}


.benefits {
    padding: 30px 15px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefits__card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.benefits__image-wrapper {
    position: relative;
    height: 180px;
}

.benefits__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits__icon-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 54px;
    height: 54px;
    background: #349498;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.benefits__icon-svg {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);

}

.benefits__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.benefits__card-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

@media (max-width: 650px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}


.cta-form {
    margin: 30px 0;
    background-color: #FAFAFA;
    border: 1px solid #73DADF;
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--box-shadow);
}

.cta-form__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cta-form__content {
    flex: 1;
}

.cta-form__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-form__text {
    font-size: 1.8rem;
}

.cta-form__action {
    flex-shrink: 0;
}


.documents-section {
    padding: 30px 15px;
}

.documents-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.documents__change-region {
    background: none;
    border: none;
    color: var(--primary-magenta);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.documents {
    background-color: #FAFAFA;
    border-radius: var(--border-radius-md);
    padding: 30px 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.documents__category {
    margin-bottom: 30px;
}

.documents__category:last-of-type {
    margin-bottom: 0;
}

.documents__category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.documents__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.documents__item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.documents__item:hover {
    color: var(--primary-magenta);
}

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

.documents__item-icon img {
    width: 70%;
    height: 100%;
}

.documents__item-name {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
}

.documents__hidden {
    display: none;
}

.documents__hidden.is-visible {
    display: block;
    margin-top: 20px;
}

.documents__more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #000;
    font-family: var(--font-family);
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    margin-top: 20px;
    margin-left: auto;
    transition: color 0.3s ease;
}

.documents__more-btn::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #E2007A;
    border-bottom: 2px solid #E2007A;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform 0.3s ease;
}

.documents__more-btn.is-active::before {
    transform: rotate(-135deg);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .documents__list {
        grid-template-columns: 1fr;
    }

    .documents {
        padding: 20px;
    }
}


.boxes-section {
    padding: 30px 15px 60px 15px;
    background-color: var(--bg-white);
}

.boxes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.offer-box {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.offer-box:hover {
    transform: translateY(-5px);
}

.offer-box__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.offer-box__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-box__title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer-box__text {
    font-size: 1.8rem;
    margin-bottom: 24px;
    flex: 1;
}

.regionalization {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-family);
    font-size: 1.3rem;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    line-height: 23px;
    border: 0;
}

.regionalization__text {
    margin-right: 5px;
}

.regionalization__city {
    font-weight: 600;
    margin-right: 5px;
}

.regionalization__link {
    text-decoration: none;
    color: #E2007A;
    font-weight: 700;
}


.z_popup_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(39, 39, 39, 0.4);
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.z_body .z_eksp_box {
  position: relative;
  padding-top: 40px;
}

.z_body .z_eksp_box .z_back_to_root {
  display: block;
  color: #000;
  margin: 30px 0;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
}

.z_body .z_eksp_box .z_back_to_root:hover {
  color: #e2007e;
}

.z_body .z_eksp_box .z_sorry_box {
    margin: 0 auto;
}

.z_body .z_eksp_box .z_sorry_box a:hover {
  text-decoration: underline;
}

.z_body .z_eksp_box .z_sorry_box .z_autocomplete {
  margin: 0 auto 50px;
  text-align: center;
}

.z_body .z_eksp_box .z_sorry_box p {
  text-align: center;
  line-height: 1.4;
}

.z_body .z_eksp_box .z_sorry_box p {
  font-size: 2.2rem;
}

.z_body .z_eksp_box .z_sorry_box p b {
  font-size: 2.4rem;
}

.z_body .z_eksp_box .z_sorry_box a {
  display: block;
  font-size: 3rem;
  text-decoration: none;
}

.z_body .z_eksp_box .z_sorry_box a img {
  display: none;
}

.z_body .z_eksp_box .z_sorry_box .z_autocomplete {
  margin: 0 auto 20px;
  text-align: center;
}

.z_body .z_sorry_box {
  box-shadow: 0px 1px 10px 0px rgb(31 31 31 / 25%);
  padding: 75px 25px;
  max-width: 1400px;
  z-index: 2;
  position: relative;
  background-color: #fff;
}

.z_body .z_e_blinder {
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 0px;
}

.c_magenta{
    color: #e2007a;
}

.c_magenta img {
    border: none;
    max-width: 100%;
}

.p_f30 {
    font-size: 3.0rem;
}

.z_body .z_eksp_box .z_sorry_box a:hover{
    text-decoration: underline;
}

@media all and (max-width: 1120px) {
  .z_body .z_e_blinder {
    display: none;
  }

  .z_body .z_eksp_box .z_sorry_box p br {
    display: none;
  }

  .z_body .z_eksp_box {
    padding-top: 5px;
  }

  .z_body .z_sorry_box {
    padding: 35px 25px;
  }

  .z_body .z_eksp_box .z_sorry_box p {
    font-size: 2.6rem;
  }

  .z_body .z_eksp_box .z_sorry_box p b {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
    .target-group__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .boxes__grid {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
        text-align: center;
    }

    .benefits__item {
        flex-direction: column;
        text-align: center;
    }

    .hero-banner__image-wrapper {
        position: relative;
        right: auto;
        top: auto;
        height: 250px;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 30px;
    }

    .hero-banner {
        height: auto;
        padding: 0px 15px;
    }

    .hero-banner__container {
        flex-direction: column;
        text-align: center;
    }

    .hero-banner__content {
        margin: 0 auto;
        align-items: center;
    }

    .hero-banner__breadcrumbs {
        display: none;
    }
}