.ga11hh__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --ga11hh__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ga11hh__loader-wrapper {
        background: var(--ga11hh__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--ga11hh__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--ga11hh__font_family), sans-serif;
        color: var(--ga11hh__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;
        }
    }

    .ga11hh__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--ga11hh__pastel_white);
        border-top: 4px solid var(--ga11hh__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--ga11hh__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--ga11hh__info);
        margin: 0;
    }

    .ga11hh__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .ga11hh__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--ga11hh__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .ga11hh__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .ga11hh__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }









#about {
    background-color: var(--ga11hh__pastel_white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
  }

  #about h3 {
    color: var(--ga11hh__main_color) !important;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  #about p {
    color: var(--ga11hh__grey) !important;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    #about .col-lg-7,
    #about .col-lg-5 {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 1rem;
    }
  }
#whytrust {
    background-color: var(--ga11hh__pastel_white);
    color: var(--ga11hh__main_dark);
  }

  #whytrust .bg-primary {
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #whytrust h2 {
    margin-bottom: 1rem;
  }

  #whytrust p {
    line-height: 1.6;
  }

  #whytrust a {
    text-decoration: underline;
    color: var(--ga11hh__light_accent) !important;
  }

  #whytrust a:hover {
    color: var(--ga11hh__main_color) !important;
  }

  @media (max-width: 768px) {
    #whytrust h2 {
      font-size: 1.75rem;
    }

    #whytrust p {
      font-size: 1rem;
    }
  }
#about {
    background-color: var(--ga11hh__main_dark);
    color: var(--ga11hh__light_color);
    position: relative;
    overflow: hidden;
  }

  #about .ga11hh__image {
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  #about h2 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 1rem;
  }

  #about h3 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 1.5rem;
  }

  #about p {
    color: var(--ga11hh__light_color) !important;
    line-height: 1.6;
  }

  #about .ga11hh__primary-button {
    background-color: var(--ga11hh__main_color) !important;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s;
  }

  #about .ga11hh__primary-button:hover {
    background-color: var(--ga11hh__light_accent) !important;
  }

  @media (max-width: 768px) {
    #about .col-lg-6,
    #about .col-lg-5 {
      text-align: center;
    }
  }
#contacts {
    background-color: var(--ga11hh__pastel_white);
    padding: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #contacts h3 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 1rem;
  }

  #contacts h2 {
    color: var(--ga11hh__dark_accent) !important;
    margin-bottom: 1rem;
  }

  #contacts p {
    color: var(--ga11hh__main_dark) !important;
    line-height: 1.6;
  }

  #contacts .bg-secondary {
    background-color: var(--ga11hh__pastel_dark) !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #contacts hr {
    border-top: 1px solid var(--ga11hh__main_border_color) !important;
  }

  @media (max-width: 768px) {
    #contacts h3 {
      text-align: center;
    }

    #contacts .col-lg-6 {
      text-align: center;
    }
  }
#products {
    background-color: var(--ga11hh__pastel_white);
    border-radius: 12px;
    padding: 2rem 0;
  }

  #products h2 {
    color: #6ecb3c !important;
    margin-bottom: 1rem;
  }

  #products p {
    margin-bottom: 2rem;
  }

  #products_item-1, #products_item-2, #products_item-3 {
    transition: transform 0.3s ease;
  }

  #products_item-1:hover, #products_item-2:hover, #products_item-3:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  #products .card {
    border-radius: 12px;
    border-top: 4px solid #6ecb3c;
  }

  #products .card-body {
    padding: 1.5rem;
  }

  #products .btn {
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  #products .btn:hover {
    background-color: var(--ga11hh__main_color) !important;
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 1.5rem;
    }
    
    #products p {
      font-size: 0.9rem;
    }
  }
#hero {
    background-color: var(--ga11hh__pastel_white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #hero h1 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 1rem;
  }

  #hero p {
    color: var(--ga11hh__main_dark) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  #hero a {
    background-color: var(--ga11hh__main_color) !important;
    border-radius: 8px;
    transition: background-color 0.3s;
  }

  #hero a:hover {
    background-color: var(--ga11hh__dark_color) !important;
  }

  #hero .ga11hh__image {
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    #hero .row {
      text-align: center;
    }

    #hero .col-md-6 {
      margin-bottom: 2rem;
    }
  }
#features {
    background-color: var(--ga11hh__pastel_white);
    padding: 2rem 0;
  }

  #features h3 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 1.5rem;
  }

  #features p {
    color: var(--ga11hh__dark_color) !important;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }

  #features_item-1,
  #features_item-2,
  #features_item-3,
  #features_item-4,
  #features_item-5 {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #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 6px 20px rgba(0, 0, 0, 0.2);
  }

  #features_item-1 h2,
  #features_item-2 h2,
  #features_item-3 h2,
  #features_item-4 h2,
  #features_item-5 h2 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 0.5rem;
  }

  #features_item-1 p,
  #features_item-2 p,
  #features_item-3 p,
  #features_item-4 p,
  #features_item-5 p {
    color: var(--ga11hh__dark_color) !important;
  }

  @media (max-width: 768px) {
    #features_item-1,
    #features_item-2,
    #features_item-3,
    #features_item-4,
    #features_item-5 {
      margin: 10px 0;
    }
  }
#advantages {
    background-color: var(--ga11hh__main_white);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #advantages .text-dark {
    color: var(--ga11hh__main_dark) !important;
  }

  #advantages .bg-secondary {
    background-color: var(--ga11hh__pastel_dark) !important;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #advantages h3, 
  #advantages h4 {
    color: var(--ga11hh__main_color) !important;
  }

  #advantages p {
    color: var(--ga11hh__main_dark);
    line-height: 1.6;
  }

  #advantages_item-1, 
  #advantages_item-2, 
  #advantages_item-3, 
  #advantages_item-4, 
  #advantages_item-5, 
  #advantages_item-6 {
    transition: transform 0.3s;
  }

  #advantages_item-1:hover, 
  #advantages_item-2:hover, 
  #advantages_item-3:hover, 
  #advantages_item-4:hover, 
  #advantages_item-5:hover, 
  #advantages_item-6:hover {
    transform: translateY(-5px);
  }

  @media (max-width: 768px) {
    #advantages .align-items-baseline {
      flex-direction: column;
      align-items: flex-start;
    }

    #advantages .text-right {
      text-align: left;
      margin-bottom: 1rem;
    }
  }
#ga11hh__footer {
    background-color: var(--ga11hh__main_dark) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  #ga11hh__footer .nav-link {
    color: var(--ga11hh__light_color) !important;
    transition: color 0.3s ease;
  }

  #ga11hh__footer .nav-link:hover {
    color: var(--ga11hh__main_color) !important;
  }

  #ga11hh__footer h5 {
    color: var(--ga11hh__light_color) !important;
  }

  #ga11hh__footer p {
    color: var(--ga11hh__light_color) !important;
    margin-bottom: 1rem;
  }

  #ga11hh__footer hr {
    border-color: var(--ga11hh__main_border_color);
  }

  #ga11hh__footer .d-inline-flex {
    color: var(--ga11hh__main_color) !important;
  }

  #ga11hh__footer .text-decoration-none {
    text-decoration: none;
    color: var(--ga11hh__light_color) !important;
  }

  #ga11hh__footer .text-decoration-none:hover {
    color: var(--ga11hh__main_color) !important;
  }

  #ga11hh__footer .navbar-nav {
    margin-top: 1rem;
  }

  #ga11hh__footer .nav-item {
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  #ga11hh__footer .nav-item:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 768px) {
    #ga11hh__footer .navbar-nav {
      flex-direction: column;
      align-items: flex-start;
    }
  }
#whyus {
    background-color: var(--ga11hh__main_white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
  }

  #whyus h2 {
    color: var(--ga11hh__main_color) !important;
    margin-bottom: 20px;
    text-align: center;
  }

  #whyus h4 {
    color: var(--ga11hh__dark_color) !important;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  #whyus .ga11hh__image {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 768px) {
    #whyus h2 {
      font-size: 1.5rem;
    }

    #whyus h4 {
      font-size: 1rem;
    }
  }
#ga11hh__header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  #ga11hh__header .navbar {
    border-radius: 10px;
    padding: 10px 15px;
    background-color: var(--ga11hh__main_white);
  }
  
  #ga11hh__header .navbar-nav .nav-link {
    color: var(--ga11hh__main_dark) !important;
    transition: color 0.3s ease;
  }
  
  #ga11hh__header .navbar-nav .nav-link:hover {
    color: var(--ga11hh__main_color) !important;
  }

  #ga11hh__header .navbar-brand {
    color: var(--ga11hh__main_color) !important;
  }

  #ga11hh__header .ga11hh__short-button {
    background-color: var(--ga11hh__main_color) !important;
    color: var(--ga11hh__main_white) !important;
    border-radius: 25px;
    transition: background-color 0.3s ease;
  }

  #ga11hh__header .ga11hh__short-button:hover {
    background-color: var(--ga11hh__light_accent) !important;
  }

  @media (max-width: 768px) {
    #ga11hh__header .navbar {
      padding: 8px 10px;
    }
    
    #ga11hh__header .navbar-brand {
      font-size: 1.5rem;
    }
    
    #ga11hh__header .nav-link {
      padding: 10px 5px;
    }
  }
#contacts-form {
    background-color: var(--ga11hh__main_white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  #contacts-form h3 {
    color: #6ecb3c; /* barf green for headings */
    margin-bottom: 1.5rem;
  }

  #contacts-form p {
    color: var(--ga11hh__main_dark);
    line-height: 1.6;
  }

  #contacts-form .ga11hh__form {
    background-color: var(--ga11hh__pastel_white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  #contacts-form .form-control {
    border: 1px solid var(--ga11hh__main_border_color);
    border-radius: 5px;
    transition: border-color 0.3s;
  }

  #contacts-form .form-control:focus {
    border-color: #6ecb3c; /* barf green on focus */
    box-shadow: 0 0 5px rgba(110, 203, 60, 0.5);
  }

  #contacts-form .form-select {
    border: 1px solid var(--ga11hh__main_border_color);
    border-radius: 5px;
    transition: border-color 0.3s;
  }

  #contacts-form .form-select:focus {
    border-color: #6ecb3c; /* barf green on focus */
    box-shadow: 0 0 5px rgba(110, 203, 60, 0.5);
  }

  #contacts-form .btn-primary {
    background-color: #6ecb3c; /* barf green for buttons */
    border: none;
  }

  #contacts-form .btn-primary:hover {
    background-color: #5cbf2a; /* darker shade for hover effect */
  }

  #contacts-form .captcha-box {
    background-color: var(--ga11hh__pastel_dark);
    border-radius: 5px;
    padding: 10px;
    color: var(--ga11hh__main_white);
    text-align: center;
  }

  #contacts-form ._lang__captcha-error {
    margin-top: 5px;
  }

  @media (max-width: 768px) {
    #contacts-form h3 {
      font-size: 1.5rem;
    }
  }
