.f6lggu__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --f6lggu__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .f6lggu__loader-wrapper {
        background: var(--f6lggu__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--f6lggu__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--f6lggu__font_family), sans-serif;
        color: var(--f6lggu__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;
        }
    }

    .f6lggu__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--f6lggu__pastel_white);
        border-top: 4px solid var(--f6lggu__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--f6lggu__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--f6lggu__info);
        margin: 0;
    }

    .f6lggu__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .f6lggu__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--f6lggu__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .f6lggu__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .f6lggu__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }









#whytrust {
    background-color: var(--f6lggu__pastel_white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  #whytrust:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  }

  #whytrust h3 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }

  #whytrust p {
    color: var(--f6lggu__main_dark) !important;
    line-height: 1.6;
    font-size: 1rem;
  }

  @media (max-width: 768px) {
    #whytrust h3 {
      font-size: 2rem;
    }

    #whytrust p {
      font-size: 0.95rem;
    }
  }
#about {
    background-color: var(--f6lggu__light_accent);
    padding: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #about h3 {
    color: var(--f6lggu__main_color) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  }

  #about h2 {
    color: var(--f6lggu__dark_color) !important;
    line-height: 1.6;
  }

  #about .f6lggu__image {
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #about .f6lggu__image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  @media (max-width: 768px) {
    #about .col-lg-7, 
    #about .col-lg-5 {
      padding: 1.5rem;
    }
  }
#hero {
    background-color: var(--f6lggu__pastel_white);
    position: relative;
    overflow: hidden;
  }

  #hero h1 {
    color: var(--f6lggu__main_color) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  #hero p {
    color: var(--f6lggu__main_dark) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  #hero a {
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  #hero a:hover {
    transform: scale(1.05);
    background-color: var(--f6lggu__light_accent) !important;
  }

  #hero .f6lggu__custom-hero-image {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  #hero .f6lggu__custom-hero-image:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    #hero .row {
      flex-direction: column-reverse;
    }

    #hero .align-items-stretch {
      text-align: center;
    }

    #hero h1 {
      font-size: 2.5rem;
    }

    #hero p {
      font-size: 1rem;
    }

    #hero a {
      width: auto;
      margin: 0 auto;
    }
  }
#f6lggu__header {
    background-color: var(--f6lggu__pastel_white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #f6lggu__header .navbar {
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
  }

  #f6lggu__header .navbar-toggler {
    border-radius: 0.25rem;
    transition: background-color 0.3s ease;
  }

  #f6lggu__header .navbar-toggler:hover {
    background-color: var(--f6lggu__light_accent) !important;
  }

  #f6lggu__header ._f6lggu__menu-item {
    color: var(--f6lggu__main_dark) !important;
    transition: color 0.3s ease;
  }

  #f6lggu__header ._f6lggu__menu-item:hover {
    color: var(--f6lggu__main_color) !important;
  }

  #f6lggu__header .nav-item {
    margin: 0 0.5rem;
  }

  #f6lggu__header a.navbar-brand {
    color: var(--f6lggu__main_color) !important;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  #f6lggu__header a.navbar-brand:hover {
    color: var(--f6lggu__light_accent) !important;
  }

  #f6lggu__header span {
    color: var(--f6lggu__main_dark) !important;
  }

  @media (max-width: 768px) {
    #f6lggu__header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  }
#features {
    background-color: var(--f6lggu__main_white);
    color: var(--f6lggu__main_dark);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  #features h2 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }

  #features h3 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  #features p {
    line-height: 1.5;
    margin-bottom: 0;
    transition: color 0.3s ease;
  }

  #features .bg-light {
    background-color: var(--f6lggu__pastel_white) !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #features .bg-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  #features_item-1 h3,
  #features_item-2 h3,
  #features_item-3 h3,
  #features_item-4 h3 {
    color: var(--f6lggu__main_color) !important;
  }

  #features_item-1 p,
  #features_item-2 p,
  #features_item-3 p,
  #features_item-4 p {
    color: var(--f6lggu__grey);
  }

  @media (max-width: 768px) {
    #features h3 {
      font-size: 1.5rem;
    }
  }
#about {
    background-color: var(--f6lggu__pastel_white) !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  #about .f6lggu__image {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  #about .f6lggu__image:hover {
    transform: scale(1.05);
  }

  #about h3 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 0.5rem;
  }

  #about h2 {
    color: var(--f6lggu__main_dark) !important;
    line-height: 1.5;
  }

  #about .col-lg-5 {
    padding-right: 1.5rem;
  }

  #about .col-lg-6 {
    padding-left: 1.5rem;
  }

  @media (max-width: 768px) {
    #about .col-lg-5, 
    #about .col-lg-6 {
      padding-right: 0;
      padding-left: 0;
    }
    
    #about h3 {
      text-align: center;
    }

    #about h2 {
      text-align: center;
    }
  }
#f6lggu__footer {
    background-color: var(--f6lggu__main_dark);
    color: var(--f6lggu__light_color);
  }

  #f6lggu__footer h2 {
    color: var(--f6lggu__main_color) !important;
    transition: color 0.3s ease;
  }

  #f6lggu__footer h2:hover {
    color: var(--f6lggu__light_accent) !important;
  }

  #f6lggu__footer p {
    color: var(--f6lggu__pastel_white);
  }

  #f6lggu__footer .nav-link {
    color: var(--f6lggu__light_color) !important;
    transition: color 0.3s ease;
  }

  #f6lggu__footer .nav-link:hover {
    color: var(--f6lggu__main_color) !important;
  }

  #f6lggu__footer .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #f6lggu__footer .form-control {
    border-radius: 0.375rem;
    transition: box-shadow 0.3s ease;
  }

  #f6lggu__footer .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(153, 15, 75, 0.25);
  }

  #f6lggu__footer button {
    background-color: var(--f6lggu__main_color) !important;
  }

  #f6lggu__footer .small {
    color: var(--f6lggu__pastel_white);
  }

  #f6lggu__footer .row > div {
    position: relative;
    transition: transform 0.3s ease;
  }

  #f6lggu__footer .row > div:hover {
    transform: translateY(-5px);
  }

  @media (max-width: 768px) {
    #f6lggu__footer .row > div {
      text-align: center;
    }
  }
#advantages {
    background-color: var(--f6lggu__pastel_dark) !important;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  #advantages h3 {
    color: var(--f6lggu__main_color) !important;
    transition: color 0.3s ease;
  }

  #advantages h3:hover {
    color: var(--f6lggu__dark_accent) !important;
  }

  #advantages p {
    color: var(--f6lggu__main_white) !important;
    line-height: 1.6;
  }

  #advantages_item-1,
  #advantages_item-2,
  #advantages_item-3 {
    background-color: var(--f6lggu__light_accent);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  #advantages_item-1:hover,
  #advantages_item-2:hover,
  #advantages_item-3:hover {
    transform: translateY(-5px);
  }

  #advantages_item-1 h4,
  #advantages_item-2 h4,
  #advantages_item-3 h4 {
    color: var(--f6lggu__main_color) !important;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    #advantages {
      padding: 2rem 1rem;
    }

    #advantages_item-1,
    #advantages_item-2,
    #advantages_item-3 {
      margin-bottom: 1.5rem;
    }
  }
#contacts {
    background-color: var(--f6lggu__main_white);
  }

  #contacts .bg-light {
    background-color: var(--f6lggu__pastel_white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  #contacts .bg-light:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }

  #contacts h2 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 0.5rem;
  }

  #contacts h3 {
    color: var(--f6lggu__dark_accent) !important;
    margin-bottom: 1rem;
  }

  #contacts p {
    color: var(--f6lggu__main_dark) !important;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  #contacts a {
    background-color: var(--f6lggu__main_color);
    color: var(--f6lggu__main_white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  #contacts a:hover {
    background-color: var(--f6lggu__dark_accent);
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    #contacts h2 {
      font-size: 1.2rem;
    }

    #contacts h3 {
      font-size: 1.5rem;
    }

    #contacts p {
      font-size: 0.9rem;
    }

    #contacts a {
      padding: 0.4rem 1rem;
    }
  }
#products {
    background-color: var(--f6lggu__main_white);
    padding: 2rem 0;
  }

  #products h2 {
    color: var(--f6lggu__main_color)!important;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-in-out;
  }

  #products p {
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  #products_item-1,
  #products_item-2,
  #products_item-3,
  #products_item-4,
  #products_item-5 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #products_item-1:hover,
  #products_item-2:hover,
  #products_item-3:hover,
  #products_item-4:hover,
  #products_item-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  #products_item-1 .card-body,
  #products_item-2 .card-body,
  #products_item-3 .card-body,
  #products_item-4 .card-body,
  #products_item-5 .card-body {
    border-radius: 1rem;
    padding: 1.5rem;
  }

  #products_item-1 .text-warning,
  #products_item-2 .text-warning,
  #products_item-3 .text-warning,
  #products_item-4 .text-warning,
  #products_item-5 .text-warning {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  #products_item-1 .btn,
  #products_item-2 .btn,
  #products_item-3 .btn,
  #products_item-4 .btn,
  #products_item-5 .btn {
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }

  #products_item-1 .btn:hover,
  #products_item-2 .btn:hover,
  #products_item-3 .btn:hover,
  #products_item-4 .btn:hover,
  #products_item-5 .btn:hover {
    background-color: var(--f6lggu__light_accent)!important;
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 1.75rem;
    }

    #products_item-1 .text-warning,
    #products_item-2 .text-warning,
    #products_item-3 .text-warning,
    #products_item-4 .text-warning,
    #products_item-5 .text-warning {
      font-size: 1.25rem;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
#contacts-form {
    position: relative;
    overflow: hidden;
  }
  
  #contacts-form h2 {
    color: var(--f6lggu__main_color) !important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }
  
  #contacts-form h5 {
    color: var(--f6lggu__dark_color) !important;
    margin-bottom: 0.5rem;
  }
  
  #contacts-form p {
    color: var(--f6lggu__grey) !important;
    line-height: 1.6;
  }
  
  #contacts-form .bg-light {
    background-color: var(--f6lggu__pastel_white) !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  #contacts-form .form-control {
    border-radius: 0.3rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  #contacts-form .form-control:focus {
    border-color: var(--f6lggu__main_color) !important;
    box-shadow: 0 0 0 0.2rem rgba(153, 15, 75, 0.25) !important;
  }
  
  #contacts-form .form-check-label {
    color: var(--f6lggu__dark_color) !important;
  }
  
  #contacts-form button {
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #contacts-form button:hover {
    background-color: var(--f6lggu__light_accent) !important;
    transform: translateY(-2px);
  }
  
  #contacts-form img {
    border-radius: 0.5rem;
  }

  @media (max-width: 768px) {
    #contacts-form .col-md-6 {
      margin-bottom: 1rem;
    }
  }
