.ntrv__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #0808081f;
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ntrv__loader-wrapper {
        background: var(--ntrv__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--ntrv__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .ntrv__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--ntrv__pastel_dark);
        border-top: 3px solid var(--ntrv__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








#contacts {
  background-color: var(--ntrv__pastel_white) !important;
  border-radius: 1rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(35, 38, 43, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#contacts .container {
  max-width: 1200px;
  margin: 0 auto;
}
#contacts .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
#contacts .p-2 {
  padding: 1rem;
}
#contacts .order-md-2 {
  order: 2;
}
#contacts .order-md-1 {
  order: 1;
}
#contacts h2 {
  font-family: var(--ntrv__font_family);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--ntrv__dark_color) !important;
  font-weight: 600;
}
#contacts h3 {
  font-family: var(--ntrv__font_family);
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--ntrv__main_color);
  font-weight: normal;
  word-break: break-word;
}
#contacts .ntrv__image {
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(35, 38, 43, 0.15);
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 720px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#contacts .ntrv__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(35, 38, 43, 0.2);
}
@media (max-width: 768px) {
  #contacts .row {
    flex-direction: column-reverse;
  }
  #contacts .order-md-2 {
    order: 2;
  }
  #contacts .order-md-1 {
    order: 1;
  }
  #contacts h2 {
    font-size: 1rem;
  }
  #contacts h3 {
    font-size: 1.75rem;
  }
}
#hero {
    background-color: var(--ntrv__main_white);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  #hero .container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
  }

  #hero .row {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    #hero .row {
      flex-direction: row;
      align-items: flex-end;
      gap: 3rem;
    }
  }

  #hero .col-md-6:first-child {
    flex: 1 1 50%;
  }

  #hero .col-md-6:last-child {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #hero h1.display-4 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ntrv__dark_color) !important;
    margin-bottom: 1.5rem;
    word-break: break-word;
  }

  #hero p.lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ntrv__grey) !important;
    margin-bottom: 2rem;
  }

  #hero a.btn {
    background-color: transparent;
    border: 2px solid var(--ntrv__main_color);
    color: var(--ntrv__main_color) !important;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  #hero a.btn:hover {
    background-color: var(--ntrv__main_color);
    color: var(--ntrv__main_white) !important;
  }

  #hero .ntrv__image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #hero .ntrv__image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
#faq {
  font-family: var(--ntrv__font_family);
  color: var(--ntrv__main_dark);
  padding: 2rem 1rem;
  background-color: #ffffff;
  position: relative;
}

#faq h2 {
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  line-height: 1.2;
  margin: 2rem 0;
  text-align: justify;
  font-weight: 700;
  color: var(--ntrv__warning) !important;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

#faq .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
}

#faq [id^="faq_item-"] {
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
}

#faq [id^="faq_item-"] > div {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 2rem;
  width: 100%;
  border-left: 4px solid var(--ntrv__info);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#faq [id^="faq_item-"] > div:hover {
  border-color: var(--ntrv__main_color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

#faq [id^="faq_item-"] h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ntrv__main_color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

#faq [id^="faq_item-"] p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ntrv__main_dark);
}

#faq .my-4 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#faq p.text-muted {
  font-size: 0.95rem;
  color: rgba(35, 38, 43, 0.7);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

@media (max-width: 768px) {
  #faq h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
  }
  #faq .row {
    flex-direction: column;
    align-items: center;
  }
  #faq [id^="faq_item-"] {
    max-width: 90%;
  }
  #faq [id^="faq_item-"] > div {
    padding: 1.5rem;
  }
}
#promotions {
    background-color: var(--ntrv__main_white);
    color: var(--ntrv__main_dark);
    font-family: var(--ntrv__font_family);
  }

  #promotions > section.py-3 {
    padding: 2rem 1rem;
  }

  #promotions > section.py-3 .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
  }

  #promotions > section.py-3 .container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #promotions > section.py-3 .container > div > .text-justify {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
  }

  #promotions > section.py-3 .container > div > .text-justify h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--ntrv__dark_color);
    letter-spacing: 0.5px;
  }

  #promotions > section.py-3 .container > div > .text-justify h2 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--ntrv__pastel_dark);
    margin-bottom: 1rem;
  }

  #promotions > section.py-3 .container > div.text p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ntrv__dark_color);
    max-width: 700px;
    margin: 0 auto;
  }

  #promotions > div.container.py-3 {
    margin-top: 2rem;
  }

  #promotions > div.container.py-3 .row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #promotions > div.container.py-3 hr {
    border: none;
    height: 2px;
    background-color: var(--ntrv__pastel_dark);
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }

  #promotions > div.container.py-3 .bg-secondary {
    background-color: var(--ntrv__pastel_dark);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    transform: rotate(45deg);
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  #promotions > div.container.py-3 .row .col:hover .bg-secondary {
    background-color: var(--ntrv__dark_color);
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
  }

  @media (max-width: 768px) {
    #promotions > section.py-3 .container > div {
      padding: 1rem;
    }

    #promotions > section.py-3 .container > div > .text-justify h3 {
      font-size: 1.75rem;
    }

    #promotions > section.py-3 .container > div > .text-justify h2 {
      font-size: 0.9rem;
    }

    #promotions > section.py-3 .container > div.text p {
      font-size: 0.9rem;
    }

    #promotions > div.container.py-3 .row {
      flex-direction: column;
    }

    #promotions > div.container.py-3 hr {
      width: 80%;
    }

    #promotions > div.container.py-3 .bg-secondary {
      width: 16px;
      height: 16px;
    }
  }
#features {
  font-family: var(--ntrv__font_family);
  padding: 3rem 1rem;
  background-color: transparent;
  color: var(--ntrv__main_dark);
  position: relative;
}

#features > .container {
  max-width: 1200px;
  margin: 0 auto;
}

#features .py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#features .align-items-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#features .row.mb-3 {
  margin-bottom: 1.5rem;
}

#features .text-center {
  text-align: center;
}

#features p.fw-italic {
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--ntrv__main_dark);
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

#features h3.h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;

  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  text-align: center;
}

#features .row.mb-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

#features .col-lg-6 {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#features .ntrv__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .col-lg-6 + .col-lg-6 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#features [id^="features_item-"] {
  width: 100%;
}

#features [id^="features_item-"] .bg-light {
  background-color: var(--ntrv__pastel_white);
  border-radius: 1.25rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  border: 1px solid var(--ntrv__main_border_color);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#features [id^="features_item-"] .bg-light:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: var(--ntrv__main_color);
}

#features [id^="features_item-"] h4 {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--ntrv__main_dark);
  transition: color 0.3s ease;
}

#features [id^="features_item-"] h4:hover {
  color: azure;
}

#features [id^="features_item-"] p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ntrv__main_dark);
}

#features [id^="features_item-"] h4,
#features [id^="features_item-"] p {
  margin: 0;
}

@media (max-width: 768px) {
  #features .row.mb-3 {
    flex-direction: column;
  }
  #features .col-lg-6 {
    flex: 1 1 100%;
  }
  #features h3.h2 {
    font-size: 1.75rem;
  }
  #features p.fw-italic {
    font-size: 1.125rem;
  }
}
#contacts-form {
  font-family: var(--ntrv__font_family);
  color: var(--ntrv__main_dark);
  background-color: transparent;
}
#contacts-form > section {
  background-color: transparent;
}
#contacts-form h2 {
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.05em;

  margin-bottom: 1rem;
  text-transform: uppercase;
}
#contacts-form .align-items-end {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
#contacts-form .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#contacts-form .py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#contacts-form .row {
  display: flex;
  flex-wrap: nowrap;
}
#contacts-form .col-lg-5 {
  flex: 0 0 auto;
  max-width: 41.6667%;
}
#contacts-form .col-lg-6 {
  flex: 0 0 auto;
  max-width: 50%;
}
#contacts-form .ms-auto {
  margin-left: auto;
}
#contacts-form .p-3 {
  padding: 1rem;
}
#contacts-form .bg-white {
  background-color: var(--ntrv__main_white) !important;
}
#contacts-form .shadow {
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
#contacts-form form.ntrv__form {
  display: flex;
  flex-direction: column;
}
#contacts-form .mb-3 {
  margin-bottom: 1rem;
}
#contacts-form input.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ntrv__main_border_color);
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#contacts-form input.form-control:focus {
  outline: none;
  border-color: azure;
  box-shadow: 0 0 0 0.2rem rgba(24, 144, 255, 0.25);
}
#contacts-form .btn {
  padding: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}
#contacts-form .btn-primary {

  color: #fff;
}
#contacts-form .btn-primary:hover {
  background-color: #3399cc !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#contacts-form .form-check {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
#contacts-form .form-check-input {
  margin-right: 0.75rem;
  accent-color: azure;
}
#contacts-form .form-check-label a {

  text-decoration: underline;
}
#contacts-form h3 {
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--ntrv__main_dark);
  margin-bottom: 1rem;
}
#contacts-form .ntrv__image-map {
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
#contacts-form section:nth-of-type(2) {
  text-align: right;
}
@media (max-width: 768px) {
  #contacts-form .align-items-end {
    flex-direction: column;
  }
  #contacts-form .col-lg-5, #contacts-form .col-lg-6 {
    max-width: 100%;
  }
  #contacts-form .ms-auto {
    margin-left: 0;
  }
  #contacts-form .p-3 {
    padding: 1rem;
  }
  #contacts-form section:nth-of-type(2) {
    text-align: center;
  }
}
#ntrv__header {
  font-family: var(--ntrv__font_family);
  background-color: var(--ntrv__main_white);
  color: var(--ntrv__main_dark);
  border-bottom: 2px solid var(--ntrv__main_border_color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}

#ntrv__header > div.bg-white {
  background-color: var(--ntrv__main_white) !important;
  transition: background-color 0.3s ease;
}

#ntrv__header hr {
  border: none;
  height: 2px;
  background-color: var(--ntrv__info);
  margin: 0;
  transition: all 0.3s ease;
}

#ntrv__header nav {
  background-color: transparent;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}

#ntrv__header nav:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#ntrv__header .navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ntrv__dark_color);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

#ntrv__header .navbar-toggler {
  border: 2px solid var(--ntrv__dark_color);
  border-radius: 50%;
  padding: 0.25em 0.5em;
  transition: all 0.3s ease;
}

#ntrv__header .navbar-toggler:hover {
  border-color: var(--ntrv__light_accent);
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

#ntrv__header .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

#ntrv__header .nav-item {
  position: relative;
}

#ntrv__header ._ntrv__menu-item {
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: var(--ntrv__main_dark);
  border-radius: 0.375rem;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  display: inline-block;
  text-decoration: none;
}

#ntrv__header ._ntrv__menu-item:hover,
#ntrv__header ._ntrv__menu-item:focus {
  background-color: var(--ntrv__light_accent);
  color: var(--ntrv__main_white);
  box-shadow: inset 0 -2px 0 var(--ntrv__main_white);
}

#ntrv__header .btn.btn-primary {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5em 1.5em;
  border-radius: 1.25rem;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
  background-color: var(--ntrv__dark_accent) !important;
  border: none !important;
  color: var(--ntrv__main_white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#ntrv__header .btn.btn-primary:hover {
  background-color: var(--ntrv__main_color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  #ntrv__header nav {
    padding: 0.5rem 1rem;
  }
  #ntrv__header .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #ntrv__header .btn.btn-primary {
    width: 100%;
    text-align: center;
  }
}
#about {
  font-family: var(--ntrv__font_family);
  line-height: 1.6;
  color: var(--ntrv__main_dark);
  position: relative;
  overflow: hidden;
}

/* Headings styling */
#about h2 {
  font-size: calc(2.5rem + 0.5vw);
  font-weight: 300;

  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 90%;
  word-break: break-word;
  position: relative;
  padding-bottom: 0.4em;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--ntrv__light_accent), transparent) 1;
  transition: border-image 0.3s ease-in-out;
}

#about h2:hover {
  border-image: linear-gradient(90deg, transparent, var(--ntrv__light_accent), transparent) 1;
}

/* Divider styling */
#about .divider {
  height: 4px;
  width: 50px;
  background-color: var(--ntrv__light_accent) !important;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(19, 234, 201, 0.4);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#about .divider:hover {
  box-shadow: 0 0 14px rgba(19, 234, 201, 0.6);
  background-color: var(--ntrv__main_color) !important;
}

/* Paragraph styling */
#about p {
  font-size: calc(1rem + 0.2vw);
  max-width: 90%;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  color: #23262b;
  line-height: 1.6;
  padding-right: 1rem;
  padding-left: 1rem;
  background: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}

#about p::selection {
  background: var(--ntrv__light_accent);
  color: #fff;
}

/* Button styling */
#about .btn-primary {
  background-color: var(--ntrv__light_accent) !important;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(19, 234, 201, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#about .btn-primary:hover {
  background-color: var(--ntrv__main_color) !important;
  box-shadow: 0 8px 12px rgba(19, 234, 201, 0.3);
}

/* Image container styling */
#about .ntrv__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(35, 38, 43, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about .ntrv__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(35, 38, 43, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #about h2 {
    font-size: calc(2rem + 1vw);
  }
  #about p {
    font-size: calc(0.9rem + 0.2vw);
    padding: 0 0.5rem;
  }
  #about .ntrv__image {
    border-radius: 0.3rem;
  }
  #about .d-grid {
    justify-content: center !important;
  }
  #about .col-lg-5, #about .col-lg-7 {
    flex-direction: column;
    align-items: center;
  }
}
#products {
    background-color: #13eac9 !important;
    border-top: 4px solid var(--ntrv__dark_accent);
    border-bottom: 4px solid var(--ntrv__dark_accent);
    box-shadow: inset 0 0 15px rgba(19, 103, 154, 0.2);
    font-family: var(--ntrv__font_family);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  #products h2 {
    letter-spacing: 1px;
    font-size: 1.25rem;
    color: var(--ntrv__main_white) !important;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  #products h2.text-uppercase {
    letter-spacing: 2px;
  }

  #products p {
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--ntrv__main_white);
  }

  #products h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ntrv__main_white);
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }

  #products .row {
    margin-top: 2rem;
  }

  #products .col {
    display: flex;
    justify-content: center;
  }

  #products_item-1,
  #products_item-2,
  #products_item-3,
  #products_item-4,
  #products_item-5,
  #products_item-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #products .bg-white {
    background-color: var(--ntrv__main_white) !important;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 2rem 1.5rem;
    max-width: 100%;
    width: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  #products .bg-white:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
  }

  #products h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ntrv__dark_color);
    margin-bottom: 1rem;
    text-align: center;
  }

  #products p.small {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: rgba(35, 38, 43, 0.6);
  }

  #products p.small:last-child {
    margin-bottom: 1.5rem;
  }

  #products a#ntrv__primary-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--ntrv__main_color);
    color: var(--ntrv__main_white);
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  }

  #products a#ntrv__primary-button:hover {
    background-color: #0fcdc8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
  }

  #products a.ntrv__short-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.8rem;
    background-color: transparent;
    border: 2px solid var(--ntrv__main_color);
    color: var(--ntrv__main_color);
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.2s ease;
  }

  #products a.ntrv__short-button:hover {
    background-color: var(--ntrv__main_color);
    color: var(--ntrv__main_white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 1.1rem;
    }

    #products h3 {
      font-size: 1.75rem;
    }

    #products p.small {
      font-size: 0.8rem;
    }

    #products .bg-white {
      padding: 1.5rem 1rem;
    }

    #products a#ntrv__primary-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }

    #products a.ntrv__short-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  }
#ntrv__footer {
  background-color: var(--ntrv__main_dark) !important;
  font-family: var(--ntrv__font_family);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ntrv__light_color) !important;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
}

#ntrv__footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

#ntrv__footer h2 {
  font-size: 1.25rem;
  color: var(--ntrv__pastel_white);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

#ntrv__footer .ntrv__form {
  margin-top: 1rem;
}

#ntrv__footer .bg-light {
  background-color: var(--ntrv__pastel_white) !important;
  border: 1px solid var(--ntrv__main_border_color);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#ntrv__footer .bg-light:hover {
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
  border-color: var(--ntrv__light_accent);
}

#ntrv__footer input[type="email"] {
  background-color: transparent;
  color: var(--ntrv__main_dark);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  flex: 1 1 auto;
  min-width: 0;
}

#ntrv__footer input[type="email"]::placeholder {
  color: var(--ntrv__light_color);
  opacity: 0.7;
}

#ntrv__footer button {
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

#ntrv__footer button:hover {
  background-color: var(--ntrv__main_color);
  transform: translateY(-2px);
}

#ntrv__footer hr {
  border: none;
  border-top: 1px solid var(--ntrv__main_border_color);
  margin: 1.5rem 0;
  opacity: 0.4;
}

#ntrv__footer .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

#ntrv__footer .col-xl-4 {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 2rem;
}

#ntrv__footer .col-xl-4 .navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

#ntrv__footer .navbar-brand img {
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;
}

#ntrv__footer .navbar-brand span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ntrv__pastel_white);
  text-transform: uppercase;
}

#ntrv__footer p {
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--ntrv__light_color);
}

#ntrv__footer .list-unstyled {
  padding-left: 0;
  margin-bottom: 0;
}

#ntrv__footer .list-unstyled li {
  margin-bottom: 1rem;
}

#ntrv__footer ._ntrv__menu-item {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ntrv__light_color);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

#ntrv__footer ._ntrv__menu-item:hover,
#ntrv__footer ._ntrv__menu-item:focus {
  color: var(--ntrv__main_color) !important;
  background-color: rgba(19, 234, 201, 0.1);
  transform: translateY(-2px);
}

#ntrv__footer .py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#ntrv__footer .border-secondary {
  border-color: var(--ntrv__main_border_color) !important;
}

#ntrv__footer .align-items-start {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

#ntrv__footer .mb-4 {
  margin-bottom: 1.5rem !important;
}

#ntrv__footer .mt-4 {
  margin-top: 1.5rem !important;
}

#ntrv__footer .mb-0 {
  margin-bottom: 0 !important;
}

#ntrv__footer p.mb-0 {
  font-size: 0.9rem;
  color: var(--ntrv__light_color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #ntrv__footer .row {
    flex-direction: column;
  }
  #ntrv__footer .col-xl-4 {
    max-width: 100%;
  }
  #ntrv__footer .navbar-brand {
    justify-content: center;
    text-align: center;
  }
  #ntrv__footer .align-items-start {
    flex-direction: column;
    align-items: center;
  }
  #ntrv__footer .mb-4, #ntrv__footer .mt-4 {
    margin: 1rem 0;
  }
}
