.kxh6__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --kxh6__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .kxh6__loader-wrapper {
        background: var(--kxh6__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--kxh6__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--kxh6__font_family), sans-serif;
        color: var(--kxh6__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .kxh6__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--kxh6__pastel_white);
        border-top: 4px solid var(--kxh6__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--kxh6__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--kxh6__info);
        margin: 0;
    }

    .kxh6__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .kxh6__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--kxh6__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .kxh6__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .kxh6__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#contacts {
  background-color: var(--kxh6__pastel_white) !important;
  color: var(--kxh6__main_dark) !important;
  font-family: var(--kxh6__font_family);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#contacts .container {
  position: relative;
  padding: 2rem;
}

#contacts .align-items-start {
  align-items: flex-start;
}

#contacts .row {
  gap: 2rem;
}

#contacts p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin-bottom: 0;
  padding: 0 1rem;
}

#contacts h2 {
  color: #beige;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  border-left: 4px solid #beige;
  padding-left: 1rem;
  transition: border-color 0.3s ease;
}

#contacts h2:hover {
  border-color: var(--kxh6__main_color);
}

#contacts .kxh6__img-base-h {
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contacts .kxh6__img-base-h:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

#contacts .mb-4 {
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  #contacts {
    padding: 1.5rem 1rem;
  }
  #contacts .align-items-start {
    flex-direction: column;
  }
  #contacts h2 {
    font-size: 1.125rem;
  }
  #contacts p {
    font-size: 1rem;
  }
  #contacts .kxh6__img-base-h {
    height: auto;
  }
}
#hero {
    background-color: var(--kxh6__pastel_white) !important;
    font-family: var(--kxh6__font_family);
    overflow: hidden;
    position: relative;
  }

  #hero .container {
    position: relative;
    z-index: 2;
  }

  #hero .row {
    align-items: center;
    padding: 2rem 1rem;
  }

  #hero .col-md-10 {
    background-color: rgba(38, 38, 36, 0.85);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
  }

  #hero .col-md-10:hover {
    border: 2px solid var(--kxh6__main_color);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }

  #hero p {
    line-height: 1.6;
    color: var(--kxh6__light_color) !important;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }

  #hero h1 {
    color: var(--kxh6__main_white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 1.5rem;
  }

  #hero h1 .text-break {
    word-break: break-word;
  }

  #hero svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
    display: block;
    fill: var(--kxh6__light_color);
    transition: fill 0.3s ease;
  }

  #hero svg:hover {
    fill: var(--kxh6__main_color);
  }

  @media (max-width: 768px) {
    #hero .row {
      flex-direction: column-reverse;
      padding: 1.5rem 1rem;
    }
    #hero .col-md-10 {
      width: 100%;
      padding: 1.5rem;
    }

  }
#about {
  position: relative;
  overflow: hidden;
  font-family: var(--kxh6__font_family);
}

#about .container {
  background-color: var(--kxh6__pastel_white);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#about .row {
  align-items: center;
}

#about .kxh6__image {
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .kxh6__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

#about h2 {
  color: var(--kxh6__pastel_dark) !important;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
}

#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--bs-primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

#about p {
  color: var(--kxh6__main_dark) !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

#about .divider {
  height: 4px;
  width: 50px;
  background-color: var(--bs-primary);
  margin-bottom: 1.5rem;
  border-radius: 2px;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, width 0.3s ease;
}

#about .d-grid {
  justify-content: center;
}

#about .btn.btn-primary {
  background-color: var(--bs-primary);
  border: none;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

#about .btn.btn-primary:hover {
  background-color: #a4b306;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #about {
    padding: 1.5rem 1rem;
  }
  #about .container {
    padding: 1.5rem;
  }
  #about h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  #about p {
    font-size: 1rem;
  }
  #about .kxh6__image {
    max-height: 300px;
  }
  #about .col-lg-7, #about .col-xxl-6 {
    order: 2;
    margin-top: 1.5rem;
  }
  #about .col-lg-5 {
    order: 1;
  }
}
#kxh6__footer {
    font-family: var(--kxh6__font_family);
    background-color: var(--kxh6__main_color) !important;
    color: var(--kxh6__main_dark) !important;
    border-top: 4px solid var(--kxh6__light_accent);
    border-radius: 1rem 1rem 0 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
  }

  #kxh6__footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  #kxh6__footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  #kxh6__footer .col-lg-4,
  #kxh6__footer .col-xl-4 {
    flex: 1 1 30%;
    min-width: 250px;
  }

  #kxh6__footer .col-sm-4,
  #kxh6__footer .col-xl-2 {
    flex: 1 1 20%;
    min-width: 200px;
  }

  #kxh6__footer h2 {
    font-family: var(--kxh6__font_family);
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--kxh6__pastel_white);
    margin-bottom: 1rem;
    position: relative;
  }

  #kxh6__footer h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--kxh6__light_accent);
    margin-top: 0.5rem;
    border-radius: 1px;
  }

  #kxh6__footer p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--kxh6__pastel_white);
    margin-bottom: 1.5rem;
  }

  #kxh6__footer a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--kxh6__pastel_white);
  }

  #kxh6__footer a:hover {
    color: var(--kxh6__main_white);
    border-bottom: 2px solid var(--kxh6__light_accent);
  }

  #kxh6__footer .list-unstyled li {
    margin-bottom: 1rem;
  }

  #kxh6__footer .list-unstyled a {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    position: relative;
  }

  #kxh6__footer .list-unstyled a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--kxh6__light_accent);
    transition: width 0.3s ease;
  }

  #kxh6__footer .list-unstyled a:hover::after {
    width: 100%;
  }

  #kxh6__footer hr {
    border: none;
    height: 2px;
    background-color: var(--kxh6__light_accent);
    margin: 1.5rem 0;
    border-radius: 1px;
  }

  #kxh6__footer p.mb-0 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--kxh6__pastel_white);
  }

  #kxh6__footer .py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #kxh6__footer .mb-3 {
    margin-bottom: 1rem !important;
  }

  @media (max-width: 768px) {
    #kxh6__footer .row {
      flex-direction: column;
      gap: 1.5rem;
    }
    #kxh6__footer .col-lg-4,
    #kxh6__footer .col-xl-4,
    #kxh6__footer .col-sm-4,
    #kxh6__footer .col-xl-2 {
      flex: 1 1 100%;
    }
    #kxh6__footer h2 {
      font-size: 1.1rem;
    }
    #kxh6__footer p {
      font-size: 0.95rem;
    }
  }
#features {
  font-family: var(--kxh6__font_family);
  color: var(--kxh6__main_dark);
  background-color: var(--kxh6__pastel_white);
  position: relative;
}

#features h3 {

  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 4rem 0 2rem 0;
  margin: 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: var(--kxh6__main_color) !important;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

#features h3:hover {
  text-shadow: 0 0 8px rgba(182, 195, 6, 0.4);
}

#features .container {
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

#features .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-end;
}

#features [id^="features_item-"] {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 1rem;
}

@media (min-width: 768px) {

}

#features [id^="features_item-"] .content-box {
  background-color: var(--kxh6__main_white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, var(--kxh6__main_color), var(--kxh6__dark_color), var(--kxh6__main_color));
  border-image-slice: 1;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

#features [id^="features_item-"] .content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: var(--kxh6__main_color);
}

#features [id^="features_item-"] h2 {

  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: var(--kxh6__main_color);
  transition: color 0.3s, text-shadow 0.3s;
}

#features [id^="features_item-"] h2 span {
  display: inline-block;
  margin-right: 0.75rem;
  padding: 0.25em 0.5em;
  background-color: var(--kxh6__light_accent);
  border-radius: 0.75em;
  font-weight: 600;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#features [id^="features_item-"] h2 span:hover {
  background-color: var(--kxh6__main_color);
  box-shadow: 0 0 10px rgba(182, 195, 6, 0.3) inset;
  color: #fff;
}

#features [id^="features_item-"] div {
  line-height: 1.5;
  color: var(--kxh6__main_dark);
}

#features [id^="features_item-"] .content-box::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--kxh6__main_color), var(--kxh6__dark_color));
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(182, 195, 6, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

#features [id^="features_item-"] .content-box:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(182, 195, 6, 0.6);
}

@media (max-width: 768px) {
  #features [id^="features_item-"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
  #features [id^="features_item-"] .content-box {
    padding: 2rem;
  }
}
#products {
    background-color: #f5f0e1 !important;
    font-family: var(--kxh6__font_family);
  }

  #products h2 {
    color: #b5c306;
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-shadow: 0 0 3px rgba(0,0,0,0.1);
  }

  #products h2 svg {
    stroke: #b5c306;
    transition: transform 0.3s ease, stroke 0.3s ease;
  }

  #products h2 svg:hover {
    transform: rotate(15deg);
    stroke: #918a6c;
  }

  #products p {
    color: #504d41;
    font-size: 1rem;
    max-width: 800px;
  }

  #products .row {
    margin-top: 2rem;
  }

  #products [id^="products_item-"] {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.75),
      rgba(255,255,255,0.9)
    );
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  #products [id^="products_item-"]:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }

  #products [id^="products_item-"] .p-3 {
    padding: 1.5rem 2rem 2.5rem 2rem;
  }

  #products [id^="products_item-"] h3 {
    color: #b5c306;
    font-weight: 700;
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    margin-bottom: 0.5rem;
  }

  #products [id^="products_item-"] h3 a {
    color: #606060;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }

  #products [id^="products_item-"] h3 a:hover {
    color: #b5c306;
    border-bottom: 2px solid #b5c306;
  }

  #products hr {
    border: none;
    border-top: 2px solid #e0d6b8;
    margin: 1rem 0;
    width: 50px;
  }

  #products [id^="products_item-"] .align-items-center {
    align-items: center;
  }

  #products [id^="products_item-"] .d-inline-flex {
    display: inline-flex;
  }

  #products [id^="products_item-"] .fst-italic {
    font-style: italic;
  }

  #products [id^="products_item-"] .small {
    font-size: 0.85rem;
  }

  #products [id^="products_item-"] .text-muted {
    color: #7a7562 !important;
  }

  #products [id^="products_item-"] .text-secondary {
    color: #504d41 !important;
  }

  #products [id^="products_item-"] .link-secondary {
    color: #504d41 !important;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }

  #products [id^="products_item-"] .link-secondary:hover {
    color: #b5c306 !important;
    border-bottom: 2px solid #b5c306;
  }

  #products [id^="products_item-"] .h5 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 700;
  }

  #products [id^="products_item-"] p.mb-1 {
    margin-bottom: 0.25rem;
  }

  #products [id^="products_item-"] span.text-secondary {
    font-weight: 600;
  }

  #products .mt-5 {
    margin-top: 3rem;
  }

  #products .kxh6__primary-button {
    background: linear-gradient(135deg, #b5c306, #d0e160);
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  #products .kxh6__primary-button:hover {
    background: linear-gradient(135deg, #a0b506, #c2d360);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: clamp(1.5rem, 4vw, 2rem);
    }

    #products p {
      font-size: 0.9rem;
    }

    #products [id^="products_item-"] {
      padding: 1rem;
    }

    #products .kxh6__primary-button {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
    }
  }
#kxh6__header {
    font-family: var(--kxh6__font_family);
    color: var(--kxh6__main_dark);
    background-color: var(--kxh6__pastel_white);
  }

  #kxh6__header > .bg-white {
    background-color: var(--kxh6__main_white) !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  }

  #kxh6__header hr {
    border: none;
    height: 2px;
    background-color: var(--kxh6__info);
    opacity: 0.3;
    margin: 0;
  }

  #kxh6__header nav {
    background-color: transparent;
  }

  #kxh6__header .navbar {
    padding: 0.5rem 1rem;
  }

  #kxh6__header .navbar-brand span {
    font-family: var(--kxh6__font_family);
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--kxh6__main_color);
    letter-spacing: 0.05em;
  }

  #kxh6__header .navbar-toggler {
    border: 1px solid var(--kxh6__main_border_color);
    border-radius: 8px;
    background-color: transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  #kxh6__header .navbar-toggler:hover {
    border-color: var(--kxh6__main_color);
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
  }

  #kxh6__header .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(182, 195, 6, 0.3);
  }

  #kxh6__header .navbar-toggler-icon {
    background-color: var(--kxh6__main_color);
    border-radius: 4px;
    width: 24px;
    height: 2px;
    display: block;
    position: relative;
  }

  #kxh6__header .navbar-toggler-icon::before,
  #kxh6__header .navbar-toggler-icon::after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--kxh6__main_color);
    border-radius: 2px;
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.3s ease;
  }

  #kxh6__header .navbar-toggler-icon::before {
    top: -8px;
  }

  #kxh6__header .navbar-toggler-icon::after {
    bottom: -8px;
  }

  #kxh6__header .navbar-nav {
    gap: 1rem;
  }

  #kxh6__header .nav-link {
    font-family: var(--kxh6__font_family);
    font-weight: 300;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    color: var(--kxh6__main_dark) !important;
  }

  #kxh6__header .nav-link:hover,
  #kxh6__header .nav-link:focus {
    background-color: var(--kxh6__light_accent);
    color: var(--kxh6__main_color) !important;
    box-shadow: inset 0 0 0 2px var(--kxh6__main_color);
  }

  #kxh6__header .nav-item {
    display: inline-block;
  }

  #kxh6__header ._kxh6__menu-item {
    font-family: var(--kxh6__font_family);
    font-weight: 400;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    color: var(--kxh6__main_dark) !important;
  }

  #kxh6__header ._kxh6__menu-item:hover,
  #kxh6__header ._kxh6__menu-item:focus {
    background-color: var(--kxh6__light_accent);
    color: var(--kxh6__main_color) !important;
    box-shadow: inset 0 0 0 2px var(--kxh6__main_color);
  }

  #kxh6__header .btn {
    font-family: var(--kxh6__font_family);
    font-weight: 600;
    font-size: 1rem;
    transition: box-shadow 0.3s, background-color 0.3s;
  }

  #kxh6__header .btn-primary {
    background-color: var(--kxh6__main_color) !important;
    border: none;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
  }

  #kxh6__header .btn-primary:hover,
  #kxh6__header .btn-primary:focus {
    background-color: #a7b704 !important;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.1);
  }

  #kxh6__header a.btn {
    border-radius: 12px;
    padding: 0.75rem 2rem;
  }

  @media (max-width: 768px) {
    #kxh6__header .navbar-brand span {
      font-size: 1.5rem;
    }

    #kxh6__header .navbar-nav {
      flex-direction: column;
      align-items: stretch;
    }

    #kxh6__header .nav-link,
    #kxh6__header ._kxh6__menu-item {
      padding: 0.75rem 1rem;
    }

    #kxh6__header a.btn {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }
  }
#faq {
    font-family: var(--kxh6__font_family);
    background-color: transparent;
  }

  #faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  #faq .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  #faq > .row {
    gap: 2rem;
  }

  #faq .py-4 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  #faq .col-lg-5, #faq .col-xl-5 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 41.6667%;
  }

  #faq .col-lg-6 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 50%;
  }

  #faq .py-4 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  #faq .img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #faq .img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  #faq h2 {
    font-family: var(--kxh6__font_family);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--kxh6__main_color);
    margin-bottom: 0.75rem;
  }

  #faq h3 {
    font-family: var(--kxh6__font_family);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--kxh6__main_dark);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
  }

  #faq .row-cols-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #faq [id^="faq_item-"] {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  #faq [id^="faq_item-"] .bg-light {
    background-color: var(--kxh6__pastel_white);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05), 0 4px 8px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, border 0.3s ease;
  }

  #faq [id^="faq_item-"] .bg-light:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  }

  #faq [id^="faq_item-"] h4 {
    font-family: var(--kxh6__font_family);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--kxh6__main_color);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease, padding-bottom 0.3s ease;
  }

  #faq [id^="faq_item-"] h4.ttext-primary {
    border-color: var(--kxh6__main_color);
    padding-bottom: 0.75rem;
  }

  #faq [id^="faq_item-"] p {
    font-family: var(--kxh6__font_family);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--kxh6__main_dark);
    margin-top: 0.75rem;
  }

  /* Accent Colors and Borders */
  #faq h4, #faq h2 {
    color: var(--kxh6__main_color);
  }

  #faq h4.ttext-primary {
    color: var(--kxh6__main_color);
    border-bottom-color: var(--kxh6__main_color);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #faq .row {
      flex-direction: column;
    }
    #faq .col-lg-5, #faq .col-xl-5 {
      max-width: 100%;
    }
    #faq .col-lg-6 {
      max-width: 100%;
    }
    #faq h3 {
      font-size: 1.75rem;
    }
    #faq h2 {
      font-size: 1.125rem;
    }
  }
#contacts-form {
  background-color: #f2f1ed !important;
  font-family: var(--kxh6__font_family);
  color: var(--kxh6__main_dark);
}

#contacts-form .container {
  padding: 2rem 1rem;
}

#contacts-form .kxh6cf-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#contacts-form .kxh6cf-form-wrapper > div {
  background-color: #262624;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#contacts-form .kxh6cf-form-wrapper > div:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

#contacts-form h2 {
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #f2f1ed !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

#contacts-form h2._lang__map_title {
  margin-top: 2rem;
}

#contacts-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

#contacts-form input[type="text"],
#contacts-form input[type="email"],
#contacts-form textarea {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--kxh6__main_border_color);
  background-color: var(--kxh6__pastel_white);
  color: var(--kxh6__main_dark);
  border-radius: 1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contacts-form input[type="text"]:focus,
#contacts-form input[type="email"]:focus,
#contacts-form textarea:focus {
  outline: none;
  border-color: var(--kxh6__light_color);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05), 0 0 0 3px var(--kxh6__light_color);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

#contacts-form .form-check-input {
  margin-right: 0.75rem;
  accent-color: var(--kxh6__main_color);
}

#contacts-form .form-check-label {
  background-color: transparent;
  padding: 0;
  margin: 0;
  line-height: 1.4;
}

#contacts-form .form-check-label a {

  text-decoration: underline;
  transition: color 0.3s;
}

#contacts-form .form-check-label a:hover {
  color: var(--kxh6__main_color);
}

#contacts-form .kxh6__primary-button {
  background-color: transparent;
  border: 2px solid var(--kxh6__main_color);
  padding: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

#contacts-form .kxh6__primary-button:hover {
  background-color: var(--kxh6__main_color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
  border-color: var(--kxh6__main_color);
}

#contacts-form img.kxh6__image-map {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

#contacts-form img.kxh6__image-map:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  #contacts-form .kxh6cf-form-wrapper > div {
    padding: 1rem;
  }
  #contacts-form h2 {
    font-size: 1rem;
  }
  #contacts-form .kxh6__primary-button {
    padding: 0.75rem 1rem;
  }
  #contacts-form img.kxh6__image-map {
    margin-top: 2rem;
  }
}
