@charset "UTF-8";
/* line 1, _elements.page.scss */
.page {
  display: grid;
  grid-template-rows: min-content;
  grid-template-areas: "content content"; }
  /* line 5, _elements.page.scss */
  .page__content {
    grid-area: content;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0; }
  /* line 12, _elements.page.scss */
  .page__sidebar {
    grid-area: sidebar;
    min-width: 0; }
    @media (max-width: 1024px) {
      /* line 12, _elements.page.scss */
      .page__sidebar {
        display: none; } }
    /* line 19, _elements.page.scss */
    .page__sidebar .sidebar__item {
      position: sticky;
      top: 108px; }
  /* line 25, _elements.page.scss */
  .page__form {
    max-width: 480px;
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0 0; }
  @media (min-width: 1025px) {
    /* line 32, _elements.page.scss */
    .page.with-sidebar {
      grid-template-columns: 1fr 4fr;
      grid-template-areas: "sidebar content";
      gap: 0 40px; } }

/* Основные переменные */
/* Базовые стили */
/* line 55, _elements.page.scss */
.partnership-container {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333; }

/* line 61, _elements.page.scss */
.section-title {
  text-align: center;
  color: #257b7c;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700; }

/* Вступительный блок */
/* line 70, _elements.page.scss */
.intro-section {
  margin-bottom: 40px; }

/* line 74, _elements.page.scss */
.intro-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  border-left: 5px solid #31a2a3; }
  /* line 81, _elements.page.scss */
  .intro-card h3 {
    margin-bottom: 20px;
    font-weight: 500; }
    /* line 85, _elements.page.scss */
    .intro-card h3 strong {
      color: #31a2a3; }

/* Блок преимуществ */
/* line 92, _elements.page.scss */
.benefits-section {
  margin-bottom: 50px; }

/* line 96, _elements.page.scss */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; }

/* line 102, _elements.page.scss */
.benefit-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #31a2a3; }
  /* line 111, _elements.page.scss */
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 116, _elements.page.scss */
  .benefit-card .benefit-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; }
    /* line 123, _elements.page.scss */
    .benefit-card .benefit-icon img {
      max-width: 100px;
      height: auto;
      object-fit: contain; }
  /* line 130, _elements.page.scss */
  .benefit-card h3 {
    color: #257b7c;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 137, _elements.page.scss */
  .benefit-card p {
    color: #666;
    line-height: 1.6; }

/* Блок видов партнерства */
/* line 144, _elements.page.scss */
.partnership-types-section {
  margin-bottom: 50px; }

/* line 148, _elements.page.scss */
.partnership-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px; }

/* line 154, _elements.page.scss */
.partnership-type-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #31a2a3;
  text-align: center; }
  /* line 163, _elements.page.scss */
  .partnership-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 168, _elements.page.scss */
  .partnership-type-card .partnership-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px; }
    /* line 175, _elements.page.scss */
    .partnership-type-card .partnership-icon img {
      max-width: 150px;
      width: 100%;
      height: auto;
      object-fit: contain; }
  /* line 183, _elements.page.scss */
  .partnership-type-card .partnership-title {
    color: #257b7c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center; }
  /* line 191, _elements.page.scss */
  .partnership-type-card .partnership-subtitle {
    font-weight: 600;
    color: #31a2a3;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: center; }
  /* line 199, _elements.page.scss */
  .partnership-type-card p {
    text-align: left;
    margin-bottom: 15px; }
  /* line 204, _elements.page.scss */
  .partnership-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left; }
    /* line 209, _elements.page.scss */
    .partnership-type-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 20px; }
      /* line 215, _elements.page.scss */
      .partnership-type-card ul li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #31a2a3;
        font-weight: bold; }
      /* line 223, _elements.page.scss */
      .partnership-type-card ul li:last-child {
        border-bottom: none; }
      /* line 227, _elements.page.scss */
      .partnership-type-card ul li strong {
        color: #257b7c; }

/* Сетка контента */
/* line 235, _elements.page.scss */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px; }

/* line 242, _elements.page.scss */
.content-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease; }
  /* line 248, _elements.page.scss */
  .content-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
  /* line 252, _elements.page.scss */
  .content-card h3 {
    color: #257b7c;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem; }
  /* line 259, _elements.page.scss */
  .content-card ul {
    list-style: none;
    padding: 0; }
    /* line 263, _elements.page.scss */
    .content-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      padding-left: 20px; }
      /* line 269, _elements.page.scss */
      .content-card ul li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #31a2a3;
        font-weight: bold; }
      /* line 277, _elements.page.scss */
      .content-card ul li:last-child {
        border-bottom: none; }
  /* line 283, _elements.page.scss */
  .content-card strong {
    color: #31a2a3; }

/* Контактный блок */
/* line 289, _elements.page.scss */
.contact-section {
  margin-bottom: 30px; }

/* line 293, _elements.page.scss */
.contact-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
  border-top: 4px solid #31a2a3; }
  /* line 301, _elements.page.scss */
  .contact-card h3 {
    font-weight: 500; }
    /* line 304, _elements.page.scss */
    .contact-card h3 a {
      color: #31a2a3;
      text-decoration: none; }
      /* line 308, _elements.page.scss */
      .contact-card h3 a:hover {
        text-decoration: underline; }
    /* line 313, _elements.page.scss */
    .contact-card h3 strong {
      color: #257b7c; }

/* Адаптивность */
@media (max-width: 768px) {
  /* line 321, _elements.page.scss */
  .partnership-container {
    padding: 15px; }

  /* line 325, _elements.page.scss */
  .section-title {
    font-size: 1.6rem; }

  /* line 329, _elements.page.scss */
  .benefits-grid,
  .partnership-types-grid,
  .content-grid {
    grid-template-columns: 1fr; }

  /* line 335, _elements.page.scss */
  .intro-card,
  .benefit-card,
  .partnership-type-card,
  .content-card {
    padding: 20px; }

  /* line 342, _elements.page.scss */
  .benefit-icon img {
    max-width: 80px; }

  /* line 346, _elements.page.scss */
  .partnership-icon img {
    max-width: 120px; } }
/* Стили для аккордеона FAQ */
/* line 354, _elements.page.scss */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden; }

/* line 362, _elements.page.scss */
.faq-item:last-child {
  margin-bottom: 0; }

/* line 366, _elements.page.scss */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.2s ease; }

/* line 378, _elements.page.scss */
.faq-question:hover {
  background-color: rgba(86, 112, 98, 0.05); }

/* line 382, _elements.page.scss */
.faq-question span {
  flex: 1;
  line-height: 1.2; }

@media (max-width: 768px) {
  /* line 388, _elements.page.scss */
  .faq-question {
    padding: 16px 18px;
    font-size: 1.0rem; } }
/* line 394, _elements.page.scss */
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #567062;
  width: 28px;
  height: 28px; }

/* line 402, _elements.page.scss */
.faq-item.active .faq-icon {
  transform: rotate(180deg); }

/* line 406, _elements.page.scss */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px; }

/* line 413, _elements.page.scss */
.faq-answer p,
.faq-answer ul {
  margin: 0 0 16px 0;
  line-height: 1.6;
  color: #4b5563;
  font-size: 1.0rem; }

/* line 421, _elements.page.scss */
.faq-answer ul {
  padding-left: 24px;
  margin-bottom: 16px; }

/* line 426, _elements.page.scss */
.faq-answer ul li {
  margin-bottom: 8px; }

@media (max-width: 768px) {
  /* line 431, _elements.page.scss */
  .faq-answer {
    padding: 0 18px; }

  /* line 435, _elements.page.scss */
  .faq-answer p,
  .faq-answer ul {
    font-size: 1.1rem; } }
/* line 441, _elements.page.scss */
.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 24px 24px 24px; }

@media (max-width: 768px) {
  /* line 447, _elements.page.scss */
  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px; } }
/* line 452, _elements.page.scss */
.faq-footer {
  margin-top: 48px;
  padding: 20px;
  text-align: center;
  background: #f9fafb;
  border-radius: 12px; }

/* line 460, _elements.page.scss */
.faq-footer a {
  color: #567062;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer; }

/* line 467, _elements.page.scss */
.faq-footer a:hover {
  text-decoration: underline; }

/* line 1, _elements.sidebar-menu.scss */
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 3px; }
  /* line 5, _elements.sidebar-menu.scss */
  .sidebar-menu a {
    display: inline-block;
    vertical-align: top;
    padding: 5px 10px;
    border-radius: var(--radius); }
    /* line 10, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-active {
      background: var(--bg-grey);
      font-weight: var(--font-bold); }
    /* line 14, _elements.sidebar-menu.scss */
    .sidebar-menu a.is-parent {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      padding-left: 5px; }
  /* line 21, _elements.sidebar-menu.scss */
  .sidebar-menu__submenu {
    margin: 3px 0 0 10px; }

/* line 1, _elements.sitemap.scss */
.sitemap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 0; }
  /* line 6, _elements.sitemap.scss */
  .sitemap .text {
    color: var(--color-black); }
    /* line 9, _elements.sitemap.scss */
    .sitemap .text ol + ol, .sitemap .text ol + ul, .sitemap .text ul + ol, .sitemap .text ul + ul {
      margin-top: 0; }
    /* line 12, _elements.sitemap.scss */
    .sitemap .text ol li, .sitemap .text ul li {
      margin: 0;
      padding: 5px 0 0; }
    /* line 17, _elements.sitemap.scss */
    .sitemap .text a {
      text-decoration: none; }
  /* line 21, _elements.sitemap.scss */
  .sitemap__list {
    column-count: 3;
    gap: 20px;
    margin: 15px 0 0 0 !important; }
    @media (max-width: 767px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 2; } }
    @media (max-width: 575px) {
      /* line 21, _elements.sitemap.scss */
      .sitemap__list {
        column-count: 1; } }
    /* line 31, _elements.sitemap.scss */
    .sitemap__list > li {
      display: block;
      break-inside: avoid; }
    /* line 35, _elements.sitemap.scss */
    .sitemap__list-collections {
      margin: 0 !important; }
      /* line 37, _elements.sitemap.scss */
      .sitemap__list-collections > li {
        padding: 20px 0 0 !important; }
        /* line 39, _elements.sitemap.scss */
        .sitemap__list-collections > li > a {
          font-weight: var(--font-bold); }

/* line 1, _elements.universal.scss */
.universal {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  /* line 5, _elements.universal.scss */
  .universal__item {
    display: flex;
    gap: 20px;
    flex-direction: column; }
    /* line 9, _elements.universal.scss */
    .universal__item.is-shadow {
      padding: 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-s); }
    /* line 14, _elements.universal.scss */
    .universal__item.is-border {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid var(--border-grey); }
  /* line 20, _elements.universal.scss */
  .universal__header {
    display: flex;
    gap: 20px; }
  /* line 24, _elements.universal.scss */
  .universal__info {
    display: flex;
    gap: 4px;
    flex-direction: column;
    align-self: center; }
  /* line 30, _elements.universal.scss */
  .universal__title {
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--font-normal); }
  /* line 34, _elements.universal.scss */
  .universal__subtitle {
    color: var(--color-grey-l); }
  /* line 37, _elements.universal.scss */
  .universal__image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    max-width: 50px;
    height: 50px; }
    /* line 44, _elements.universal.scss */
    .universal__image.is-bg {
      flex: 0 0 70px;
      max-width: 70px;
      height: 70px;
      background-color: var(--bg-grey);
      border-radius: 50%; }
    /* line 51, _elements.universal.scss */
    .universal__image img {
      width: 50px;
      height: 50px;
      object-fit: contain; }
  /* line 57, _elements.universal.scss */
  .universal__info {
    align-self: center; }

/* line 62, _elements.universal.scss */
.universal-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 767px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      gap: 10px;
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 575px) {
    /* line 62, _elements.universal.scss */
    .universal-gallery {
      grid-template-columns: repeat(2, 1fr); } }
  /* line 73, _elements.universal.scss */
  .universal-gallery__item {
    box-shadow: var(--shadow-s);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--color-black);
    background-color: var(--bg-grey); }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        transition: box-shadow 0.2s ease; } }
    @media (hover: none) {
      /* line 73, _elements.universal.scss */
      .universal-gallery__item {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } }
    @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      /* line 25, _mixins.scss */
      .universal-gallery__item:hover {
        color: var(--color-secondary);
        box-shadow: var(--shadow); }
        /* line 86, _elements.universal.scss */
        .universal-gallery__item:hover .thumb img {
          filter: brightness(80%);
          transform: scale(1.02); } }
    /* line 92, _elements.universal.scss */
    .universal-gallery__item .thumb {
      color: currentColor !important;
      --radius: 0; }
      @media (hover: hover), all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        /* line 95, _elements.universal.scss */
        .universal-gallery__item .thumb img {
          will-change: transform;
          transition: filter 0.6s ease, transform 0.6s ease; } }
    /* line 102, _elements.universal.scss */
    .universal-gallery__item .svg-icon {
      position: absolute;
      z-index: 5;
      left: 50%;
      top: 50%;
      padding: 2px;
      background-color: var(--bg-white);
      border-radius: 50%;
      box-shadow: var(--shadow-m);
      object-fit: none;
      width: 38px;
      height: 38px;
      transform: translate(-50%, -50%); }

/* Базовые стили и переменные */
/* line 19, theme.page.scss */
.premium-trees-partnership {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; }

/* Герой-блок */
/* line 29, theme.page.scss */
.partnership-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #caefef 0%, #fff 100%);
  border-radius: 12px;
  margin-bottom: 40px; }
  /* line 36, theme.page.scss */
  .partnership-hero h1 {
    color: #257b7c;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700; }
  /* line 43, theme.page.scss */
  .partnership-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto; }
    /* line 48, theme.page.scss */
    .partnership-hero .hero-subtitle strong {
      color: #31a2a3; }

/* Сетка преимуществ */
/* line 55, theme.page.scss */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px; }

/* line 62, theme.page.scss */
.advantage-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #31a2a3; }
  /* line 70, theme.page.scss */
  .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
  /* line 75, theme.page.scss */
  .advantage-card .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 15px; }
  /* line 80, theme.page.scss */
  .advantage-card h3 {
    color: #257b7c;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 87, theme.page.scss */
  .advantage-card ul {
    list-style: none;
    padding: 0; }
    /* line 91, theme.page.scss */
    .advantage-card ul li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
      /* line 95, theme.page.scss */
      .advantage-card ul li:last-child {
        border-bottom: none; }
      /* line 99, theme.page.scss */
      .advantage-card ul li strong {
        color: #31a2a3; }

/* Секция сертификатов */
/* line 107, theme.page.scss */
.certificates-section {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 50px;
  text-align: center; }
  /* line 114, theme.page.scss */
  .certificates-section h2 {
    color: #257b7c;
    margin-bottom: 15px;
    font-weight: 600; }
  /* line 120, theme.page.scss */
  .certificates-section > p {
    margin-bottom: 30px;
    opacity: 0.8; }

/* line 126, theme.page.scss */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; }

/* line 132, theme.page.scss */
.certificate-item {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  transition: all 0.3s ease; }
  /* line 140, theme.page.scss */
  .certificate-item:hover {
    background: #31a2a3;
    color: #fff; }

/* Секция отзывов */
/* line 147, theme.page.scss */
.reviews-section {
  margin-bottom: 50px; }
  /* line 150, theme.page.scss */
  .reviews-section h2 {
    text-align: center;
    color: #257b7c;
    margin-bottom: 30px;
    font-weight: 600; }

/* line 158, theme.page.scss */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px; }

/* line 164, theme.page.scss */
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #31a2a3; }
  /* line 171, theme.page.scss */
  .review-card p {
    font-style: italic;
    margin-bottom: 15px; }
  /* line 176, theme.page.scss */
  .review-card .review-author {
    font-weight: 600;
    color: #257b7c; }

/* Призыв к действию */
/* line 183, theme.page.scss */
.cta-section {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #31a2a3 0%, #257b7c 100%);
  color: #fff;
  border-radius: 12px; }
  /* line 190, theme.page.scss */
  .cta-section h2 {
    margin-bottom: 15px;
    font-weight: 700; }
  /* line 195, theme.page.scss */
  .cta-section > p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }

/* line 204, theme.page.scss */
.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px; }

/* line 212, theme.page.scss */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #fff;
  color: #31a2a3;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease; }
  /* line 222, theme.page.scss */
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); }
  /* line 227, theme.page.scss */
  .cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff; }
    /* line 232, theme.page.scss */
    .cta-button.secondary:hover {
      background: #fff;
      color: #31a2a3; }

/* line 239, theme.page.scss */
.cta-hours {
  opacity: 0.8;
  font-size: 0.9rem; }

/* Адаптивность */
@media (max-width: 768px) {
  /* line 246, theme.page.scss */
  .partnership-hero h1 {
    font-size: 2rem; }

  /* line 250, theme.page.scss */
  .advantages-grid {
    grid-template-columns: 1fr; }

  /* line 254, theme.page.scss */
  .cta-contacts {
    flex-direction: column;
    align-items: center; }

  /* line 259, theme.page.scss */
  .cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center; } }
/* line 270, theme.page.scss */
.about-company-section {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box; }
  /* line 275, theme.page.scss */
  .about-company-section .about-company-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start; }
  /* line 286, theme.page.scss */
  .about-company-section .about-company-text {
    flex: 1 1 55%;
    min-width: 280px; }
    /* line 290, theme.page.scss */
    .about-company-section .about-company-text .about-company-title {
      margin: 0 0 20px 0;
      font-family: inherit;
      font-size: 32px;
      line-height: 1.3;
      font-weight: 600;
      color: #1a2c3e; }
    /* line 299, theme.page.scss */
    .about-company-section .about-company-text .about-company-description {
      font-family: inherit;
      font-size: 16px;
      line-height: 1.6;
      color: #333; }
      /* line 305, theme.page.scss */
      .about-company-section .about-company-text .about-company-description p {
        margin: 0 0 1.2em 0; }
        /* line 308, theme.page.scss */
        .about-company-section .about-company-text .about-company-description p:last-child {
          margin-bottom: 0; }
  /* line 315, theme.page.scss */
  .about-company-section .about-company-image {
    flex: 1 1 40%;
    min-width: 280px; }
    /* line 319, theme.page.scss */
    .about-company-section .about-company-image img {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      object-fit: cover;
      object-position: center 30%;
      max-height: 700px; }

@media (max-width: 992px) {
  /* line 335, theme.page.scss */
  .about-company-section .about-company-container {
    gap: 30px; }

  /* line 338, theme.page.scss */
  .about-company-title {
    font-size: 28px; }

  /* line 341, theme.page.scss */
  .about-company-image img {
    max-height: 450px; } }
@media (max-width: 768px) {
  /* line 347, theme.page.scss */
  .about-company-section .about-company-container {
    flex-direction: column;
    gap: 25px; }

  /* line 351, theme.page.scss */
  .about-company-text {
    order: 2;
    flex: 1 1 100%; }

  /* line 355, theme.page.scss */
  .about-company-image {
    order: 1;
    flex: 1 1 100%; }

  /* line 359, theme.page.scss */
  .about-company-title {
    font-size: 24px;
    text-align: center; }

  /* line 363, theme.page.scss */
  .about-company-description {
    font-size: 15px; }

  /* line 366, theme.page.scss */
  .about-company-image img {
    border-radius: 4px;
    max-height: none; } }
@media (max-width: 480px) {
  /* line 373, theme.page.scss */
  .about-company-section {
    padding: 15px 0; }

  /* line 376, theme.page.scss */
  .about-company-title {
    font-size: 22px;
    margin-bottom: 15px; }

  /* line 380, theme.page.scss */
  .about-company-description {
    font-size: 14px;
    line-height: 1.5; }

  /* line 384, theme.page.scss */
  .about-company-image img {
    border-radius: 4px; } }
/* line 393, theme.page.scss */
.delivery-page {
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box; }
  /* line 398, theme.page.scss */
  .delivery-page .delivery-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0; }
  /* line 406, theme.page.scss */
  .delivery-page .delivery-intro {
    margin-bottom: 40px;
    padding: 0 20px; }
    /* line 410, theme.page.scss */
    .delivery-page .delivery-intro p {
      font-size: 20px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      text-align: center;
      margin: 0; }
  /* line 421, theme.page.scss */
  .delivery-page .delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px; }
  /* line 430, theme.page.scss */
  .delivery-page .delivery-card {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column; }
    /* line 438, theme.page.scss */
    .delivery-page .delivery-card .delivery-card-title {
      font-size: 22px;
      font-weight: 600;
      color: #1a2c3e;
      margin: 0 0 16px 0;
      padding-bottom: 12px;
      border-bottom: 2px solid #d0d5d9; }
    /* line 447, theme.page.scss */
    .delivery-page .delivery-card .delivery-card-content {
      flex: 1; }
      /* line 450, theme.page.scss */
      .delivery-page .delivery-card .delivery-card-content p {
        font-size: 15px;
        line-height: 1.55;
        color: #444;
        margin: 0 0 12px 0; }
        /* line 456, theme.page.scss */
        .delivery-page .delivery-card .delivery-card-content p:last-child {
          margin-bottom: 0; }
        /* line 460, theme.page.scss */
        .delivery-page .delivery-card .delivery-card-content p strong {
          color: #1a2c3e;
          font-weight: 600; }
  /* line 469, theme.page.scss */
  .delivery-page .delivery-footer {
    margin-top: 20px;
    padding: 24px 20px;
    background: #f0f2f4;
    border-radius: 4px;
    text-align: center; }
    /* line 476, theme.page.scss */
    .delivery-page .delivery-footer p {
      font-size: 18px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      margin: 0; }

@media (max-width: 1023px) and (min-width: 768px) {
  /* line 489, theme.page.scss */
  .delivery-page .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; }
  /* line 494, theme.page.scss */
  .delivery-page .delivery-intro p {
    font-size: 18px; }
  /* line 498, theme.page.scss */
  .delivery-page .delivery-card .delivery-card-title {
    font-size: 20px; } }
@media (max-width: 767px) {
  /* line 506, theme.page.scss */
  .delivery-page {
    padding: 25px 0; }
    /* line 509, theme.page.scss */
    .delivery-page .delivery-container {
      padding: 0; }
    /* line 513, theme.page.scss */
    .delivery-page .delivery-intro {
      margin-bottom: 30px;
      padding: 0 15px; }
      /* line 517, theme.page.scss */
      .delivery-page .delivery-intro p {
        font-size: 16px;
        text-align: left; }
    /* line 523, theme.page.scss */
    .delivery-page .delivery-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 35px;
      padding: 0 15px; }
    /* line 530, theme.page.scss */
    .delivery-page .delivery-card {
      padding: 20px; }
      /* line 533, theme.page.scss */
      .delivery-page .delivery-card .delivery-card-title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 10px; }
      /* line 539, theme.page.scss */
      .delivery-page .delivery-card .delivery-card-content p {
        font-size: 14px;
        line-height: 1.5; }
    /* line 545, theme.page.scss */
    .delivery-page .delivery-footer {
      padding: 18px 15px; }
      /* line 548, theme.page.scss */
      .delivery-page .delivery-footer p {
        font-size: 16px; } }
@media (min-width: 1280px) {
  /* line 558, theme.page.scss */
  .delivery-page .delivery-card {
    padding: 28px; }
    /* line 561, theme.page.scss */
    .delivery-page .delivery-card .delivery-card-title {
      font-size: 24px; }
    /* line 565, theme.page.scss */
    .delivery-page .delivery-card .delivery-card-content p {
      font-size: 16px; } }
/* line 574, theme.page.scss */
.payment-page {
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box; }
  /* line 579, theme.page.scss */
  .payment-page .payment-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0; }
  /* line 587, theme.page.scss */
  .payment-page .payment-intro {
    margin-bottom: 40px;
    padding: 0 20px; }
    /* line 591, theme.page.scss */
    .payment-page .payment-intro p {
      font-size: 20px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      text-align: center;
      margin: 0; }
  /* line 602, theme.page.scss */
  .payment-page .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px; }
  /* line 611, theme.page.scss */
  .payment-page .payment-card {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column; }
    /* line 619, theme.page.scss */
    .payment-page .payment-card .payment-card-title {
      font-size: 22px;
      font-weight: 600;
      color: #1a2c3e;
      margin: 0 0 16px 0;
      padding-bottom: 12px;
      border-bottom: 2px solid #d0d5d9; }
    /* line 628, theme.page.scss */
    .payment-page .payment-card .payment-card-content {
      flex: 1; }
      /* line 631, theme.page.scss */
      .payment-page .payment-card .payment-card-content p {
        font-size: 15px;
        line-height: 1.55;
        color: #444;
        margin: 0 0 12px 0; }
        /* line 637, theme.page.scss */
        .payment-page .payment-card .payment-card-content p:last-child {
          margin-bottom: 0; }
        /* line 641, theme.page.scss */
        .payment-page .payment-card .payment-card-content p strong {
          color: #1a2c3e;
          font-weight: 600; }
  /* line 650, theme.page.scss */
  .payment-page .payment-footer {
    margin-top: 20px;
    padding: 24px 20px;
    background: #f0f2f4;
    border-radius: 4px;
    text-align: center; }
    /* line 657, theme.page.scss */
    .payment-page .payment-footer p {
      font-size: 18px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      margin: 0; }

@media (max-width: 1023px) and (min-width: 768px) {
  /* line 670, theme.page.scss */
  .payment-page .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; }
  /* line 675, theme.page.scss */
  .payment-page .payment-intro p {
    font-size: 18px; }
  /* line 679, theme.page.scss */
  .payment-page .payment-card .payment-card-title {
    font-size: 20px; } }
@media (max-width: 767px) {
  /* line 687, theme.page.scss */
  .payment-page {
    padding: 25px 0; }
    /* line 690, theme.page.scss */
    .payment-page .payment-container {
      padding: 0; }
    /* line 694, theme.page.scss */
    .payment-page .payment-intro {
      margin-bottom: 30px;
      padding: 0 15px; }
      /* line 698, theme.page.scss */
      .payment-page .payment-intro p {
        font-size: 16px;
        text-align: left; }
    /* line 704, theme.page.scss */
    .payment-page .payment-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 35px;
      padding: 0 15px; }
    /* line 711, theme.page.scss */
    .payment-page .payment-card {
      padding: 20px; }
      /* line 714, theme.page.scss */
      .payment-page .payment-card .payment-card-title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 10px; }
      /* line 720, theme.page.scss */
      .payment-page .payment-card .payment-card-content p {
        font-size: 14px;
        line-height: 1.5; }
    /* line 726, theme.page.scss */
    .payment-page .payment-footer {
      padding: 18px 15px; }
      /* line 729, theme.page.scss */
      .payment-page .payment-footer p {
        font-size: 16px; } }
@media (min-width: 1280px) {
  /* line 739, theme.page.scss */
  .payment-page .payment-card {
    padding: 28px; }
    /* line 742, theme.page.scss */
    .payment-page .payment-card .payment-card-title {
      font-size: 24px; }
    /* line 746, theme.page.scss */
    .payment-page .payment-card .payment-card-content p {
      font-size: 16px; } }
/* line 756, theme.page.scss */
.return-page {
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box; }
  /* line 761, theme.page.scss */
  .return-page .return-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0; }
  /* line 769, theme.page.scss */
  .return-page .return-intro {
    margin-bottom: 40px;
    padding: 0 20px; }
    /* line 773, theme.page.scss */
    .return-page .return-intro p {
      font-size: 20px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      text-align: center;
      margin: 0; }
  /* line 784, theme.page.scss */
  .return-page .return-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px; }
  /* line 793, theme.page.scss */
  .return-page .return-card {
    background: #f5f5f5;
    border-radius: 4px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column; }
    /* line 801, theme.page.scss */
    .return-page .return-card .return-card-title {
      font-size: 22px;
      font-weight: 600;
      color: #1a2c3e;
      margin: 0 0 16px 0;
      padding-bottom: 12px;
      border-bottom: 2px solid #d0d5d9; }
    /* line 810, theme.page.scss */
    .return-page .return-card .return-card-content {
      flex: 1; }
      /* line 813, theme.page.scss */
      .return-page .return-card .return-card-content p {
        font-size: 15px;
        line-height: 1.55;
        color: #444;
        margin: 0 0 12px 0; }
        /* line 819, theme.page.scss */
        .return-page .return-card .return-card-content p:last-child {
          margin-bottom: 0; }
        /* line 823, theme.page.scss */
        .return-page .return-card .return-card-content p strong {
          color: #1a2c3e;
          font-weight: 600; }
  /* line 832, theme.page.scss */
  .return-page .return-footer {
    margin-top: 20px;
    padding: 24px 20px;
    background: #f0f2f4;
    border-radius: 4px;
    text-align: center; }
    /* line 839, theme.page.scss */
    .return-page .return-footer p {
      font-size: 18px;
      line-height: 1.5;
      color: #1a2c3e;
      font-weight: 500;
      margin: 0; }

@media (max-width: 1023px) and (min-width: 768px) {
  /* line 852, theme.page.scss */
  .return-page .return-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px; }
  /* line 857, theme.page.scss */
  .return-page .return-intro p {
    font-size: 18px; }
  /* line 861, theme.page.scss */
  .return-page .return-card .return-card-title {
    font-size: 20px; } }
@media (max-width: 767px) {
  /* line 869, theme.page.scss */
  .return-page {
    padding: 25px 0; }
    /* line 872, theme.page.scss */
    .return-page .return-container {
      padding: 0; }
    /* line 876, theme.page.scss */
    .return-page .return-intro {
      margin-bottom: 30px;
      padding: 0 15px; }
      /* line 880, theme.page.scss */
      .return-page .return-intro p {
        font-size: 16px;
        text-align: left; }
    /* line 886, theme.page.scss */
    .return-page .return-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 35px;
      padding: 0 15px; }
    /* line 893, theme.page.scss */
    .return-page .return-card {
      padding: 20px; }
      /* line 896, theme.page.scss */
      .return-page .return-card .return-card-title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 10px; }
      /* line 902, theme.page.scss */
      .return-page .return-card .return-card-content p {
        font-size: 14px;
        line-height: 1.5; }
    /* line 908, theme.page.scss */
    .return-page .return-footer {
      padding: 18px 15px; }
      /* line 911, theme.page.scss */
      .return-page .return-footer p {
        font-size: 16px; } }
@media (min-width: 1280px) {
  /* line 921, theme.page.scss */
  .return-page .return-card {
    padding: 28px; }
    /* line 924, theme.page.scss */
    .return-page .return-card .return-card-title {
      font-size: 24px; }
    /* line 928, theme.page.scss */
    .return-page .return-card .return-card-content p {
      font-size: 16px; } }
/* line 944, theme.page.scss */
.contacts-page {
  width: 100%;
  padding: 40px 0;
  box-sizing: border-box; }
  /* line 949, theme.page.scss */
  .contacts-page .contacts-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0; }
  /* line 957, theme.page.scss */
  .contacts-page .contacts-main {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 0 20px;
    align-items: stretch; }
    @media (max-width: 768px) {
      /* line 957, theme.page.scss */
      .contacts-page .contacts-main {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch; } }
  /* line 972, theme.page.scss */
  .contacts-page .contacts-info {
    width: 34%;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 30px; }
    @media (max-width: 992px) {
      /* line 972, theme.page.scss */
      .contacts-page .contacts-info {
        width: 38%; } }
    @media (max-width: 768px) {
      /* line 972, theme.page.scss */
      .contacts-page .contacts-info {
        width: 100%;
        padding: 20px; } }
    /* line 987, theme.page.scss */
    .contacts-page .contacts-info .contacts-info-block {
      margin-bottom: 24px; }
      /* line 990, theme.page.scss */
      .contacts-page .contacts-info .contacts-info-block:last-of-type {
        margin-bottom: 0; }
    /* line 995, theme.page.scss */
    .contacts-page .contacts-info .contacts-info-title {
      font-size: 18px;
      font-weight: 600;
      color: #1a2c3e;
      margin: 0 0 8px 0; }
    /* line 1002, theme.page.scss */
    .contacts-page .contacts-info .contacts-info-text {
      font-size: 16px;
      line-height: 1.5;
      color: #444;
      margin: 0 0 4px 0; }
      /* line 1008, theme.page.scss */
      .contacts-page .contacts-info .contacts-info-text:last-child {
        margin-bottom: 0; }
    /* line 1013, theme.page.scss */
    .contacts-page .contacts-info .contacts-link {
      color: #1a2c3e;
      text-decoration: none;
      border-bottom: 1px solid #d0d5d9; }
      /* line 1018, theme.page.scss */
      .contacts-page .contacts-info .contacts-link:hover {
        border-bottom-color: #1a2c3e; }
    /* line 1024, theme.page.scss */
    .contacts-page .contacts-info .contacts-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #444;
      text-decoration: none;
      transition: color 0.2s ease; }
      /* line 1032, theme.page.scss */
      .contacts-page .contacts-info .contacts-whatsapp img {
        width: 24px;
        height: 24px;
        display: block; }
      /* line 1038, theme.page.scss */
      .contacts-page .contacts-info .contacts-whatsapp span {
        font-size: 16px; }
      /* line 1042, theme.page.scss */
      .contacts-page .contacts-info .contacts-whatsapp:hover {
        color: #25D366; }
  /* line 1049, theme.page.scss */
  .contacts-page .contacts-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #d0d5d9;
    display: flex;
    flex-wrap: wrap;
    gap: 12px; }
    /* line 1057, theme.page.scss */
    .contacts-page .contacts-social .contacts-social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: #e0e0e0;
      border-radius: 4px;
      transition: background 0.2s ease; }
      /* line 1067, theme.page.scss */
      .contacts-page .contacts-social .contacts-social-link img {
        width: 28px;
        height: 28px;
        display: block; }
      /* line 1073, theme.page.scss */
      .contacts-page .contacts-social .contacts-social-link:hover {
        background: #d0d0d0; }
  /* line 1080, theme.page.scss */
  .contacts-page .contacts-map {
    width: 66%;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: stretch; }
    @media (max-width: 992px) {
      /* line 1080, theme.page.scss */
      .contacts-page .contacts-map {
        width: 58%; } }
    @media (max-width: 768px) {
      /* line 1080, theme.page.scss */
      .contacts-page .contacts-map {
        width: 100%; } }
    /* line 1097, theme.page.scss */
    .contacts-page .contacts-map > * {
      width: 100%;
      height: 100%;
      min-height: 100%; }
    /* line 1103, theme.page.scss */
    .contacts-page .contacts-map iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 100%;
      border: none; }
    /* line 1112, theme.page.scss */
    .contacts-page .contacts-map div[style*="position"],
    .contacts-page .contacts-map script + div {
      width: 100% !important;
      height: 100% !important;
      min-height: 100% !important; }

@media (max-width: 992px) {
  /* line 1125, theme.page.scss */
  .contacts-page .contacts-info .contacts-info-title {
    font-size: 17px; }
  /* line 1129, theme.page.scss */
  .contacts-page .contacts-info .contacts-info-text {
    font-size: 15px; }
  /* line 1134, theme.page.scss */
  .contacts-page .contacts-whatsapp span {
    font-size: 15px; }
  /* line 1138, theme.page.scss */
  .contacts-page .contacts-social .contacts-social-link {
    width: 44px;
    height: 44px; }
    /* line 1142, theme.page.scss */
    .contacts-page .contacts-social .contacts-social-link img {
      width: 26px;
      height: 26px; }
  /* line 1148, theme.page.scss */
  .contacts-page .contacts-map {
    min-height: 400px; } }
@media (max-width: 768px) {
  /* line 1156, theme.page.scss */
  .contacts-page {
    padding: 25px 0; }
    /* line 1159, theme.page.scss */
    .contacts-page .contacts-container {
      padding: 0; }
    /* line 1163, theme.page.scss */
    .contacts-page .contacts-main {
      padding: 0 15px;
      gap: 25px; }
    /* line 1168, theme.page.scss */
    .contacts-page .contacts-info {
      padding: 20px; }
      /* line 1171, theme.page.scss */
      .contacts-page .contacts-info .contacts-info-block {
        margin-bottom: 18px; }
      /* line 1175, theme.page.scss */
      .contacts-page .contacts-info .contacts-info-title {
        font-size: 16px;
        margin-bottom: 6px; }
      /* line 1180, theme.page.scss */
      .contacts-page .contacts-info .contacts-info-text {
        font-size: 14px; }
      /* line 1184, theme.page.scss */
      .contacts-page .contacts-info .contacts-whatsapp {
        gap: 6px; }
        /* line 1187, theme.page.scss */
        .contacts-page .contacts-info .contacts-whatsapp img {
          width: 20px;
          height: 20px; }
        /* line 1192, theme.page.scss */
        .contacts-page .contacts-info .contacts-whatsapp span {
          font-size: 14px; }
    /* line 1198, theme.page.scss */
    .contacts-page .contacts-map {
      min-height: 350px; }
    /* line 1202, theme.page.scss */
    .contacts-page .contacts-social {
      margin-top: 20px;
      padding-top: 15px;
      gap: 10px; }
      /* line 1207, theme.page.scss */
      .contacts-page .contacts-social .contacts-social-link {
        width: 44px;
        height: 44px; }
        /* line 1211, theme.page.scss */
        .contacts-page .contacts-social .contacts-social-link img {
          width: 24px;
          height: 24px; } }
@media (min-width: 1280px) {
  /* line 1223, theme.page.scss */
  .contacts-page .contacts-info {
    padding: 35px; }
    /* line 1226, theme.page.scss */
    .contacts-page .contacts-info .contacts-info-title {
      font-size: 20px; }
    /* line 1230, theme.page.scss */
    .contacts-page .contacts-info .contacts-info-text {
      font-size: 17px; }
    /* line 1234, theme.page.scss */
    .contacts-page .contacts-info .contacts-whatsapp span {
      font-size: 17px; }
  /* line 1239, theme.page.scss */
  .contacts-page .contacts-map {
    min-height: 550px; }
  /* line 1243, theme.page.scss */
  .contacts-page .contacts-social .contacts-social-link {
    width: 52px;
    height: 52px; }
    /* line 1247, theme.page.scss */
    .contacts-page .contacts-social .contacts-social-link img {
      width: 30px;
      height: 30px; } }
/* line 1257, theme.page.scss */
.green-page {
  --gp-green: #234f31;
  --gp-green-dark: #12301d;
  --gp-bg: #f5f2eb;
  --gp-card: #ffffff;
  --gp-text: #1f241f;
  --gp-muted: #6b716b;
  --gp-radius: 10px;
  color: var(--gp-text);
  font-family: inherit;
  overflow: hidden; }
  /* line 1270, theme.page.scss */
  .green-page * {
    box-sizing: border-box; }
  /* line 1274, theme.page.scss */
  .green-page img {
    display: block;
    width: 100%;
    height: auto; }

/* line 1281, theme.page.scss */
.gp-container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }

/* line 1287, theme.page.scss */
.gp-section {
  padding: 70px 20px; }
  /* line 1290, theme.page.scss */
  .gp-section h2 {
    margin: 0 0 36px;
    font-size: clamp(30px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.04em; }

/* line 1299, theme.page.scss */
.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--gp-green);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease; }
  /* line 1313, theme.page.scss */
  .gp-btn:hover {
    transform: translateY(-2px);
    background: var(--gp-green-dark); }
  /* line 1318, theme.page.scss */
  .gp-btn--light {
    background: #fff;
    color: var(--gp-green) !important; }

/* line 1324, theme.page.scss */
.gp-hero {
  padding: 30px 20px 80px;
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center; }
  /* line 1331, theme.page.scss */
  .gp-hero__image {
    border-radius: 10px;
    overflow: hidden;
    background: var(--gp-bg); }
    /* line 1336, theme.page.scss */
    .gp-hero__image img {
      aspect-ratio: 1 / 1.12;
      object-fit: cover; }
  /* line 1343, theme.page.scss */
  .gp-hero__content h1 {
    margin: 0 0 24px;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -0.06em; }
  /* line 1351, theme.page.scss */
  .gp-hero__content p {
    max-width: 720px;
    margin: 0 0 32px;
    color: var(--gp-muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.45; }

/* line 1361, theme.page.scss */
.gp-space-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px; }

/* line 1367, theme.page.scss */
.gp-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--gp-card); }
  /* line 1373, theme.page.scss */
  .gp-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease; }
  /* line 1379, theme.page.scss */
  .gp-card:hover img {
    transform: scale(1.04); }
  /* line 1383, theme.page.scss */
  .gp-card--small {
    aspect-ratio: 0.9 / 1;
    min-height: 280px; }
    /* line 1387, theme.page.scss */
    .gp-card--small::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 58%); }
    /* line 1394, theme.page.scss */
    .gp-card--small h3 {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      margin: 0;
      color: #fff;
      font-size: 16px;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 0.02em; }
  /* line 1409, theme.page.scss */
  .gp-card--service {
    background: #f7f4ee; }
    /* line 1412, theme.page.scss */
    .gp-card--service img {
      aspect-ratio: 0.82 / 1;
      object-fit: cover; }

/* line 1419, theme.page.scss */
.gp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }

/* line 1425, theme.page.scss */
.gp-service-caption {
  padding: 22px; }
  /* line 1428, theme.page.scss */
  .gp-service-caption h3 {
    margin: 0 0 12px;
    font-size: 22px;
    text-transform: uppercase; }
  /* line 1434, theme.page.scss */
  .gp-service-caption p {
    margin: 0;
    color: var(--gp-muted);
    line-height: 1.45; }

/* line 1441, theme.page.scss */
.gp-steps {
  background: var(--gp-bg);
  max-width: none; }
  /* line 1445, theme.page.scss */
  .gp-steps .gp-container {
    max-width: 1600px; }
  /* line 1449, theme.page.scss */
  .gp-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px; }

/* line 1456, theme.page.scss */
.gp-step {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 10px;
  background: #fff; }
  /* line 1463, theme.page.scss */
  .gp-step span {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--gp-green);
    color: #fff;
    font-size: 20px; }
  /* line 1476, theme.page.scss */
  .gp-step h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase; }
  /* line 1483, theme.page.scss */
  .gp-step p {
    margin: 0 0 20px;
    color: var(--gp-muted);
    line-height: 1.45; }
  /* line 1489, theme.page.scss */
  .gp-step img {
    margin-top: auto;
    max-height: 190px;
    object-fit: contain; }

/* line 1496, theme.page.scss */
.gp-cta {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 56px 36px;
  border-radius: 10px;
  background: var(--gp-green);
  color: #fff;
  text-align: center; }
  /* line 1505, theme.page.scss */
  .gp-cta h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1;
    text-transform: uppercase; }
  /* line 1512, theme.page.scss */
  .gp-cta p {
    max-width: 620px;
    margin: 0 auto 28px;
    font-size: 18px;
    line-height: 1.45;
    opacity: 0.86; }

/* line 1521, theme.page.scss */
.gp-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }

/* line 1527, theme.page.scss */
.gp-price-card {
  padding: 14px 14px 24px;
  border-radius: 10px;
  background: #f7f4ee; }
  /* line 1532, theme.page.scss */
  .gp-price-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px; }
  /* line 1539, theme.page.scss */
  .gp-price-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.15;
    text-transform: uppercase; }
  /* line 1546, theme.page.scss */
  .gp-price-card b {
    display: block;
    margin-bottom: 12px;
    color: var(--gp-green);
    font-size: 18px;
    text-transform: uppercase; }
  /* line 1554, theme.page.scss */
  .gp-price-card p {
    margin: 0;
    color: var(--gp-muted);
    line-height: 1.45; }

/* line 1562, theme.page.scss */
.gp-benefits__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch; }
  /* line 1568, theme.page.scss */
  .gp-benefits__wrap > img {
    height: 100%;
    min-height: 620px;
    object-fit: contain;
    border-radius: 10px;
    background: #f7f4ee; }
/* line 1577, theme.page.scss */
.gp-benefits__list {
  display: grid;
  gap: 14px; }

/* line 1583, theme.page.scss */
.gp-benefit {
  padding: 22px;
  border-radius: 10px;
  background: #f7f4ee; }
  /* line 1588, theme.page.scss */
  .gp-benefit h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2; }
  /* line 1594, theme.page.scss */
  .gp-benefit p {
    margin: 0;
    color: var(--gp-muted);
    line-height: 1.45; }

/* line 1601, theme.page.scss */
.gp-faq {
  max-width: 1100px; }
  /* line 1604, theme.page.scss */
  .gp-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
    /* line 1607, theme.page.scss */
    .gp-faq__item button {
      width: 100%;
      padding: 24px 0;
      border: 0;
      background: transparent;
      color: var(--gp-text);
      font: inherit;
      font-size: 22px;
      text-align: left;
      cursor: pointer;
      position: relative; }
      /* line 1619, theme.page.scss */
      .gp-faq__item button::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 24px;
        font-size: 28px;
        line-height: 1; }
    /* line 1629, theme.page.scss */
    .gp-faq__item div {
      max-height: 0;
      overflow: hidden;
      color: var(--gp-muted);
      font-size: 17px;
      line-height: 1.55;
      transition: max-height 0.3s ease, padding 0.3s ease; }
    /* line 1639, theme.page.scss */
    .gp-faq__item.is-open button::after {
      content: "–"; }
    /* line 1643, theme.page.scss */
    .gp-faq__item.is-open div {
      max-height: 220px;
      padding-bottom: 24px; }

/* line 1651, theme.page.scss */
.gp-final {
  margin-top: 40px;
  margin-bottom: 90px;
  min-height: 520px;
  padding: 70px 40px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.22)), url("https://static.insales-cdn.com/r/rIUIIZS57hQ/rs%3Afill-down%3A380%3A476%3A1/q%3A100/plain/files/1/6738/39770706/original/a_high-resolution_photorealistic_image_of_an_elegant_photo_zone_at_a_modern_event_venue_designed.png%40png") center/cover no-repeat;
  color: #fff; }
  /* line 1662, theme.page.scss */
  .gp-final h2 {
    max-width: 820px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(34px, 5.6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65); }
  /* line 1673, theme.page.scss */
  .gp-final p {
    margin: 0 0 30px;
    color: #fff;
    font-size: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7); }

@media (max-width: 1200px) {
  /* line 1682, theme.page.scss */
  .gp-space-grid,
  .gp-service-grid,
  .gp-price-grid,
  .gp-steps__grid {
    grid-template-columns: repeat(2, 1fr); }

  /* line 1689, theme.page.scss */
  .gp-benefits__wrap {
    grid-template-columns: 1fr; }

  /* line 1693, theme.page.scss */
  .gp-benefits__wrap > img {
    min-height: 420px; } }
@media (max-width: 760px) {
  /* line 1699, theme.page.scss */
  .gp-section {
    padding: 48px 16px; }

  /* line 1703, theme.page.scss */
  .gp-hero {
    grid-template-columns: 1fr;
    padding: 20px 16px 52px; }

  /* line 1708, theme.page.scss */
  .gp-space-grid,
  .gp-service-grid,
  .gp-price-grid,
  .gp-steps__grid {
    grid-template-columns: 1fr; }

  /* line 1715, theme.page.scss */
  .gp-card--small {
    min-height: 320px; }

  /* line 1719, theme.page.scss */
  .gp-cta {
    margin: 20px 16px;
    padding: 42px 22px; }

  /* line 1724, theme.page.scss */
  .gp-final {
    margin: 30px 16px 60px;
    padding: 50px 24px;
    min-height: 460px; } }
