.cjh5fe__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --cjh5fe__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .cjh5fe__loader-wrapper {
        background: var(--cjh5fe__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--cjh5fe__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--cjh5fe__font_family), sans-serif;
        color: var(--cjh5fe__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;
        }
    }

    .cjh5fe__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--cjh5fe__pastel_white);
        border-top: 4px solid var(--cjh5fe__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--cjh5fe__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--cjh5fe__info);
        margin: 0;
    }

    .cjh5fe__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .cjh5fe__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--cjh5fe__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .cjh5fe__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .cjh5fe__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#whyus {
    background-color: var(--cjh5fe__main_white);
    padding: 3rem 0;
  }

  #whyus h3 {
    color: var(--cjh5fe__dark_accent) !important;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
  }

  #whyus h3:hover {
    color: var(--cjh5fe__light_accent) !important;
  }

  #whyus h2 {
    color: var(--cjh5fe__dark_color) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  #whyus .cjh5fe__short-button {
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  #whyus .cjh5fe__short-button:hover {
    background-color: var(--cjh5fe__dark_accent) !important;
    transform: translateY(-2px);
  }

  #whyus .cjh5fe__image {
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    #whyus h3 {
      font-size: 1.75rem;
    }

    #whyus h2 {
      font-size: 1rem;
    }
  }
#about {
    position: relative;
    overflow: hidden;
  }

  #about .container {
    padding: 1rem 0;
  }

  #about .align-items-baseline {
    margin-bottom: 2rem;
  }

  #about p {
    line-height: 1.6;
    font-size: 1rem;
    color: var(--cjh5fe__main_white) !important;
    transition: color 0.3s ease;
  }

  #about h2 {
    color: var(--cjh5fe__dark_accent) !important;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  #about .cjh5fe__img-base-h {
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  #about .cjh5fe__img-base-h:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    #about .align-items-baseline {
      flex-direction: column;
    }

    #about h2 {
      text-align: center;
    }
  }
#contacts {
    background-color: var(--cjh5fe__main_white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
  }

  #contacts h2 {
    color: var(--cjh5fe__dark_accent) !important;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  #contacts h4 {
    color: var(--cjh5fe__main_dark) !important;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  #contacts a {
    background-color: var(--cjh5fe__dark_accent) !important;
    border-radius: 5px;
    color: var(--cjh5fe__main_white) !important;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  #contacts a:hover {
    background-color: var(--cjh5fe__light_accent) !important;
  }

  #contacts img#cjh5fe__image {
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    #contacts h2 {
      font-size: 1.2rem;
    }

    #contacts h4 {
      font-size: 0.9rem;
    }

    #contacts a {
      padding: 8px 16px;
    }
  }
#cjh5fe__header {
    background-color: var(--cjh5fe__main_white)!important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #cjh5fe__header .navbar-brand {
    color: var(--cjh5fe__dark_color)!important;
    transition: color 0.3s ease;
  }

  #cjh5fe__header .navbar-brand:hover {
    color: var(--cjh5fe__light_accent)!important;
  }

  #cjh5fe__header .nav-link {
    color: var(--cjh5fe__dark_color)!important;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  #cjh5fe__header .nav-link:hover {
    background-color: var(--cjh5fe__light_accent)!important;
    color: var(--cjh5fe__main_white)!important;
  }

  #cjh5fe__header .navbar-toggler {
    border-color: var(--cjh5fe__dark_color)!important;
  }

  #cjh5fe__header .navbar-toggler-icon {
    background-color: var(--cjh5fe__dark_color)!important;
  }

  #cjh5fe__header .navbar-nav {
    margin-right: 15px;
  }

  #cjh5fe__header .nav-item {
    margin-left: 10px;
  }

  @media (max-width: 768px) {
    #cjh5fe__header .navbar-nav {
      flex-direction: column;
      align-items: center;
    }

    #cjh5fe__header .nav-item {
      margin-left: 0;
      margin-bottom: 10px;
    }
  }
#advantages {
    background-color: var(--cjh5fe__pastel_white) !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #advantages .text-primary {
    color: var(--cjh5fe__dark_accent) !important;
  }

  #advantages .text-dark {
    color: var(--cjh5fe__main_dark) !important;
  }

  #advantages .text-light {
    color: var(--cjh5fe__main_white) !important;
  }

  #advantages .bg-dark {
    background-color: var(--cjh5fe__main_dark) !important;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #advantages .bg-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  #advantages h2 {
    margin-bottom: 1.5rem;
  }

  #advantages h3 {
    margin-bottom: 1.5rem;
  }

  #advantages p {
    line-height: 1.6;
  }

  #advantages_item-1,
  #advantages_item-2,
  #advantages_item-3,
  #advantages_item-4,
  #advantages_item-5 {
    position: relative;
    transition: transform 0.3s ease;
  }

  #advantages_item-1:hover,
  #advantages_item-2:hover,
  #advantages_item-3:hover,
  #advantages_item-4:hover,
  #advantages_item-5:hover {
    transform: scale(1.02);
  }

  @media (max-width: 768px) {
    #advantages h3 {
      font-size: 1.5rem;
    }
    
    #advantages p {
      font-size: 0.9rem;
    }
  }
#hero {
    background-color: var(--cjh5fe__pastel_white);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
  }

  #hero h1 {
    color: var(--cjh5fe__dark_accent) !important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  #hero p {
    color: var(--cjh5fe__dark_color) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  #hero a {
    background-color: var(--cjh5fe__dark_accent) !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  #hero a:hover {
    background-color: var(--cjh5fe__light_accent) !important;
    transform: translateY(-2px);
  }

  #hero .cjh5fe__image {
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  #hero .cjh5fe__image:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    #hero h1 {
      font-size: 2.5rem;
    }

    #hero p {
      font-size: 1rem;
    }

    #hero a {
      width: 100%;
      text-align: center;
    }
  }
#cjh5fe__footer {
    position: relative;
    overflow: hidden;
    background-color: var(--cjh5fe__main_dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  #cjh5fe__footer .navbar-nav {
    padding-left: 0;
  }

  #cjh5fe__footer .navbar-nav .nav-link {
    color: var(--cjh5fe__light_color)!important;
    transition: color 0.3s ease;
  }

  #cjh5fe__footer .navbar-nav .nav-link:hover {
    color: var(--cjh5fe__light_accent)!important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  #cjh5fe__footer hr {
    border-color: var(--cjh5fe__main_border_color);
    margin: 1rem 0;
  }

  #cjh5fe__footer .h2 {
    color: var(--cjh5fe__main_white)!important;
    text-shadow: 1px 1px 2px var(--cjh5fe__dark_color);
  }

  #cjh5fe__footer .text-danger {
    color: var(--cjh5fe__warning)!important;
  }

  #cjh5fe__footer .fw-light {
    opacity: 0.8;
  }

  #cjh5fe__footer .text-center {
    margin-top: 1.5rem;
    font-weight: 300;
  }

  #cjh5fe__footer .text-light {
    transition: opacity 0.3s ease;
  }

  #cjh5fe__footer .text-light:hover {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    #cjh5fe__footer .row > div {
      text-align: center;
      margin-bottom: 1rem;
    }
  }
#features {
    background-color: var(--cjh5fe__pastel_white)!important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #features h2 {
    color: var(--cjh5fe__dark_accent)!important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  #features h3 {
    color: var(--cjh5fe__dark_color)!important;
    margin-bottom: 1rem;
  }

  #features p {
    color: var(--cjh5fe__main_dark)!important;
    line-height: 1.6;
  }

  #features_item-1, 
  #features_item-2, 
  #features_item-3, 
  #features_item-4, 
  #features_item-5 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #features_item-1:hover, 
  #features_item-2:hover, 
  #features_item-3:hover, 
  #features_item-4:hover, 
  #features_item-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  #features_item-1 .bg-dark, 
  #features_item-2 .bg-dark, 
  #features_item-3 .bg-dark, 
  #features_item-4 .bg-dark, 
  #features_item-5 .bg-dark {
    background-color: var(--cjh5fe__main_dark)!important;
    border-radius: 8px;
  }

  #features_item-1 p, 
  #features_item-2 p, 
  #features_item-3 p, 
  #features_item-4 p, 
  #features_item-5 p {
    color: var(--cjh5fe__main_white)!important;
  }

  @media (max-width: 768px) {
    #features h2 {
      font-size: 1.25rem;
    }

    #features h3 {
      font-size: 1.5rem;
    }

    #features_item-1, 
    #features_item-2, 
    #features_item-3, 
    #features_item-4, 
    #features_item-5 {
      margin-bottom: 1.5rem;
    }
  }
#about {
    position: relative;
    overflow: hidden;
  }

  #about .bg-light {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #about h2 {
    color: var(--cjh5fe__dark_accent) !important;
    transition: color 0.3s ease;
  }

  #about h3 {
    color: var(--cjh5fe__light_accent) !important;
    transition: color 0.3s ease;
  }

  #about p {
    line-height: 1.6;
    color: var(--cjh5fe__main_dark) !important;
    margin-bottom: 1.5rem;
  }

  #about .container {
    padding: 2rem 1rem;
  }

  #about .row {
    margin: 0;
  }

  @media (max-width: 768px) {
    #about .bg-light {
      padding: 2rem;
    }

    #about .container {
      padding: 1rem;
    }
  }
#products {
    background-color: var(--cjh5fe__main_color);
    padding: 3rem 0;
  }
  
  #products h2 {
    color: var(--cjh5fe__light_accent) !important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }
  
  #products h3 {
    color: var(--cjh5fe__dark_accent) !important;
    transition: color 0.3s ease;
  }

  #products p {
    color: var(--cjh5fe__dark_color) !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  #products .bg-white {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #products .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  #products a {
    background-color: var(--cjh5fe__light_accent) !important;
    color: var(--cjh5fe__main_white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
  }

  #products a:hover {
    background-color: var(--cjh5fe__dark_accent) !important;
  }

  #products .cjh5fe__short-button {
    background-color: var(--cjh5fe__dark_accent) !important;
    color: var(--cjh5fe__main_white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
  }

  #products .cjh5fe__short-button:hover {
    background-color: var(--cjh5fe__light_accent) !important;
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 1.25rem;
    }

    #products h3 {
      font-size: 1.5rem;
    }
  }
#contacts-form {
    background-color: var(--cjh5fe__main_white);
    padding: 2rem 0;
  }

  #contacts-form .cjh5fe5cf-form-wrapper {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  #contacts-form .cjh5fe5cf-form-wrapper:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  #contacts-form h2 {
    color: var(--cjh5fe__dark_accent) !important;
    margin-bottom: 1.5rem;
  }

  #contacts-form h3.cjh5fe5cf-contact-label {
    color: var(--cjh5fe__dark_accent) !important;
  }

  #contacts-form input.form-control,
  #contacts-form textarea.form-control {
    border: 1px solid var(--cjh5fe__light_color);
    border-radius: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  #contacts-form input.form-control:focus,
  #contacts-form textarea.form-control:focus {
    border-color: var(--cjh5fe__dark_accent) !important;
    box-shadow: 0 0 0 2px rgba(128, 16, 16, 0.5);
  }

  #contacts-form .cjh5fe__primary-button {
    background-color: var(--cjh5fe__dark_accent) !important;
    color: var(--cjh5fe__main_white) !important;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
  }

  #contacts-form .cjh5fe__primary-button:hover {
    background-color: var(--cjh5fe__light_accent) !important;
  }

  #contacts-form .form-check-label {
    color: var(--cjh5fe__main_dark) !important;
  }

  #contacts-form .form-check-input:checked {
    background-color: var(--cjh5fe__dark_accent) !important;
    border-color: var(--cjh5fe__dark_accent) !important;
  }

  @media (max-width: 768px) {
    #contacts-form .cjh5fe5cf-form-wrapper {
      padding: 1rem;
    }

    #contacts-form h2 {
      font-size: 1.5rem;
    }
  }
#contacts-form {
    position: relative;
    overflow: hidden;
  }
  
  #contacts-form .bg-primary {
    background-color: var(--cjh5fe__main_color) !important;
  }
  
  #contacts-form p {
    color: var(--cjh5fe__main_dark);
    line-height: 1.6;
  }
  
  #contacts-form .shadow-sm {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  #contacts-form h2, 
  #contacts-form h5 {
    color: var(--cjh5fe__dark_accent);
    margin-bottom: 1rem;
  }
  
  #contacts-form .form-control, 
  #contacts-form .form-select {
    border: 1px solid var(--cjh5fe__main_border_color);
    border-radius: 0.375rem;
    transition: border-color 0.3s ease;
  }
  
  #contacts-form .form-control:focus, 
  #contacts-form .form-select:focus {
    border-color: var(--cjh5fe__light_accent);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
  }
  
  #contacts-form .btn-primary {
    background-color: var(--cjh5fe__dark_accent) !important;
    border-color: var(--cjh5fe__dark_accent) !important;
  }
  
  #contacts-form .form-check-label {
    color: var(--cjh5fe__main_dark);
  }
  
  #contacts-form .form-check-input {
    margin-top: 0.3rem;
  }
  
  #contacts-form hr {
    border-color: var(--cjh5fe__main_border_color);
  }
  
  @media (max-width: 768px) {
    #contacts-form .col-md-6 {
      margin-bottom: 1.5rem;
    }
  }
