.pi6s7v__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;
    }

    .pi6s7v__loader-wrapper {
        background: var(--pi6s7v__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--pi6s7v__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .pi6s7v__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--pi6s7v__pastel_dark);
        border-top: 3px solid var(--pi6s7v__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








#hero {
    background: linear-gradient(to bottom, rgba(37, 38, 34, 0.8), rgba(37, 38, 34, 0.8)), var(--pi6s7v__pastel_white);
    position: relative;
    overflow: hidden;
  }

  #hero .container {
    padding: 2rem 1rem;
  }

  #hero .row {
    margin: 0;
  }

  #hero .col-md-10 {
    background-color: rgba(37, 38, 34, 0.95);
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  #hero .h5 {
    font-family: var(--pi6s7v__font_family);
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: 0.05em;
    color: var(--pi6s7v__light_color) !important;
    margin-bottom: 1rem;
  }

  #hero .h5::first-letter {
    text-transform: uppercase;
  }

  #hero h1 {
    font-family: var(--pi6s7v__font_family);
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 700;
    color: var(--pi6s7v__main_white) !important;
    word-break: break-word;
  }

  #hero svg {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 768px) {
    #hero .col-md-10 {
      padding: 1.5rem;
      border-radius: 1rem;
    }
    #hero h1 {
      font-size: 2rem;
      text-align: center;
    }
    #hero .h5 {
      font-size: 1rem;
    }
  }
#contacts {
  background-color: #f0f3dd !important;
  font-family: var(--pi6s7v__font_family);
  position: relative;
  overflow: hidden;
}

#contacts .container {
  position: relative;
  z-index: 2;
}

#contacts .row {
  position: relative;
}

#contacts .wow {
  will-change: transform, opacity;
}

#contacts h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 500;
  color: #252622 !important;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#contacts .divider {
  height: 4px;
  width: 50px;
  background-color: var(--bs-primary);
  margin-bottom: 1rem;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}

#contacts p {
  font-size: 1rem;
  line-height: 1.6;
  color: #252622 !important;
  background: rgba(255,255,255,0.8);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}

#contacts p:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

#contacts .d-grid {
  gap: 1.5rem;
}

#contacts .d-sm-flex {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

#contacts .pi6s7v__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

#contacts .pi6s7v__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  #contacts .row {
    flex-direction: column;
  }
  #contacts .wow.fadeInRight {
    order: 2;
  }
  #contacts .wow.fadeInLeft {
    order: 1;
  }
  #contacts .col-lg-5,
  #contacts .col-lg-7 {
    max-width: 100%;
  }
  #contacts .ps-lg-4,
  #contacts .pe-lg-2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
#faq {
  font-family: var(--pi6s7v__font_family);
  position: relative;
  overflow: hidden;
}
#faq > .container {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.4), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(8px);
  padding: 2rem 1rem;
}
#faq > .container > div {
  background-color: transparent;
}
#faq h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--pi6s7v__main_color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--pi6s7v__main_border_color);
}
#faq .bg-light {
  background-color: transparent !important;
}
#faq .card {
  background-color: transparent !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#faq .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
#faq .card-body {
  padding: 1.5rem;
  background-color: var(--pi6s7v__main_white);
  border-radius: 16px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}
#faq h4 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--pi6s7v__main_color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
#faq p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--pi6s7v__main_dark);
  line-height: 1.5;
}
#faq .text-dark {
  color: var(--pi6s7v__main_dark);
}
#faq .display-3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--pi6s7v__main_color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid var(--pi6s7v__main_border_color);
  max-width: 100%;
  word-break: break-word;
}
@media (max-width: 768px) {
  #faq h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  #faq .card-body {
    padding: 1rem;
  }
  #faq .display-3 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}
#about {
  font-family: var(--pi6s7v__font_family);
  color: var(--pi6s7v__main_dark);
  background-color: var(--pi6s7v__main_white);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

#about .container {
  max-width: 1140px;
  margin: 0 auto;
}

#about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#about .p-5 {
  padding: 3rem;
  background-color: rgba(236, 226, 150, 0.05);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#about .p-5:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

#about .pi6s7v__primary-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background-color: var(--pi6s7v__main_color);
  color: var(--pi6s7v__main_white);
  text-decoration: none;
  font-size: 1rem;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

#about .pi6s7v__primary-button:hover {
  background-color: var(--pi6s7v__dark_color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

#about h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--pi6s7v__dark_color);
  font-weight: 400;
}

#about h2 span {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(236, 226, 150, 0.2);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.1);
}

#about h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--pi6s7v__main_color);
  max-width: 100%;
}

#about h3.text-break {
  word-break: break-word;
}

#about #section_image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#about #section_image:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transform: scale(1.02);
}

@media (max-width: 768px) {
  #about .row {
    flex-direction: column;
  }
  #about .p-5 {
    padding: 2rem;
  }
  #about #section_image {
    max-height: 300px;
  }
  #about h2 {
    font-size: calc(1.2rem + 1vw);
  }
  #about h3 {
    font-size: calc(1.4rem + 0.5vw);
  }
}
#contacts-form {
  background-color: var(--pi6s7v__main_white) !important;
  color: var(--pi6s7v__main_dark) !important;
  font-family: var(--pi6s7v__font_family);
}

#contacts-form .container {
  padding: 2rem 1rem;
}

#contacts-form .row {
  align-items: start;
}

#contacts-form .py-2 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#contacts-form h2 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.75rem;
  color: var(--pi6s7v__pastel_dark);
  margin-bottom: 1.5rem;
}

#contacts-form h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--pi6s7v__pastel_dark);
}

#contacts-form h3.pi6s7v5cf-contact-label {
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

#contacts-form form {
  display: flex;
  flex-direction: column;
}

#contacts-form .pi6s7v5cf-form-wrapper {
  max-width: 100%;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

#contacts-form .pi6s7v5cf-form-wrapper input,
#contacts-form .pi6s7v5cf-form-wrapper textarea,
#contacts-form .pi6s7v5cf-form-wrapper select {
  font-size: 1rem;
  border: 1px solid var(--pi6s7v__main_border_color);
  background-color: var(--pi6s7v__pastel_white);
  color: var(--pi6s7v__main_dark);
  padding: 0.75rem 1rem;
  border-radius: 16px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

#contacts-form .pi6s7v5cf-form-wrapper input:focus,
#contacts-form .pi6s7v5cf-form-wrapper textarea:focus,
#contacts-form .pi6s7v5cf-form-wrapper select:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--pi6s7v__light_color);
  border-color: var(--pi6s7v__light_color);
}

#contacts-form .pi6s7v__primary-button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 16px;
  background-color: var(--pi6s7v__main_color);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#contacts-form .pi6s7v__primary-button:hover {
  background-color: var(--pi6s7v__dark_color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#contacts-form .form-check {
  margin-top: 1rem;
  font-size: 0.9rem;
}

#contacts-form .form-check-input {
  accent-color: var(--pi6s7v__main_color);
  cursor: pointer;
}

#contacts-form .form-check-label {
  margin-left: 0.5rem;
  color: var(--pi6s7v__main_dark);
}

#contacts-form .form-check-label a {
  color: var(--pi6s7v__main_color);
  text-decoration: underline;
  transition: color 0.3s;
}

#contacts-form .form-check-label a:hover {
  color: var(--pi6s7v__dark_color);
}

#contacts-form span,
#contacts-form div {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-size: 1rem;
  color: var(--pi6s7v__main_dark);
}

@media (max-width: 768px) {
  #contacts-form .row {
    flex-direction: column;
  }
  #contacts-form .col-lg-8,
  #contacts-form .col-lg-4 {
    max-width: 100%;
  }
  #contacts-form .py-2 {
    padding: 1rem 0.5rem;
  }
  #contacts-form .pi6s7v5cf-form-wrapper {
    padding: 1rem;
  }
  #contacts-form .pi6s7v__primary-button {
    width: 100%;
    padding: 0.75rem;
  }
}
#pi6s7v__footer {
    background-color: #252622 !important;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: var(--pi6s7v__font_family);
  }

  #pi6s7v__footer footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
  }

  #pi6s7v__footer .container {
    display: flex;
    flex-direction: column;
  }

  #pi6s7v__footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  #pi6s7v__footer .col-xl-4 {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #pi6s7v__footer .col-md, #pi6s7v__footer .col-sm-6 {
    flex: 1 1 45%;
    min-width: 200px;
  }

  #pi6s7v__footer h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pi6s7v__main_color);
    margin-bottom: 1rem;
  }

  #pi6s7v__footer hr {
    border: none;
    height: 3px;
    width: 25%;
    background-color: var(--pi6s7v__main_color);
    border-radius: 2px;
    margin: 1rem 0;
  }

  #pi6s7v__footer ul {
    padding: 0;
    margin: 0;
  }

  #pi6s7v__footer li {
    margin-bottom: 1rem;
  }

  #pi6s7v__footer a._pi6s7v__menu-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background-color: transparent;
    color: var(--pi6s7v__light_color) !important;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 0 0 transparent;
  }

  #pi6s7v__footer a._pi6s7v__menu-item:hover {
    background-color: rgba(152, 0, 2, 0.1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  #pi6s7v__footer .fw-bold {
    font-weight: 700;
  }

  #pi6s7v__footer .h5 {
    font-size: 1rem;
  }

  #pi6s7v__footer .text_primary {
    color: var(--pi6s7v__main_color) !important;
  }

  #pi6s7v__footer hr.border-top__pi6s7v__main_color {
    border-top: 3px solid var(--pi6s7v__main_color);
  }

  #pi6s7v__footer hr.border-secondary {
    border-top: 1px solid var(--pi6s7v__grey);
  }

  #pi6s7v__footer .pb-3, #pi6s7v__footer .pt-3 {
    padding: 1rem 0;
  }

  #pi6s7v__footer .small {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  #pi6s7v__footer .text-center {
    text-align: center;
  }

  #pi6s7v__footer p {
    margin: 0;
  }

  #pi6s7v__footer span {
    display: inline-block;
  }

  /* Accent and decorative styling */
  #pi6s7v__footer a._pi6s7v__menu-item {
    font-family: var(--pi6s7v__font_family);
    font-weight: 600;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #pi6s7v__footer .row {
      flex-direction: column;
      gap: 1.5rem;
    }

    #pi6s7v__footer hr {
      width: 50%;
    }

    #pi6s7v__footer .col-xl-4, #pi6s7v__footer .col-md, #pi6s7v__footer .col-sm-6 {
      flex: 1 1 100%;
    }
  }
#pi6s7v__header {
  font-family: var(--pi6s7v__font_family);
  color: var(--pi6s7v__main_dark);
  background: linear-gradient(135deg, var(--pi6s7v__pastel_white) 0%, var(--pi6s7v__main_white) 100%);
  box-shadow: inset 0 4px 8px rgba(0,0,0,0.05);
}

/* Top bar styles */
#pi6s7v__header > div.bg-white {
  border-bottom: 2px solid var(--pi6s7v__main_border_color);
}

#pi6s7v__header .align-items-baseline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

#pi6s7v__header svg {
  fill: var(--pi6s7v__dark_color);
  transition: fill 0.3s ease;
}

#pi6s7v__header svg:hover {
  fill: var(--pi6s7v__main_color);
}

#pi6s7v__header span {
  font-size: 0.95rem;
  margin-right: 1rem;
  display: inline-block;
  min-width: max-content;
  color: var(--pi6s7v__main_dark);
}

/* Separator styles */
#pi6s7v__header hr {
  border: none;
  height: 2px;
  background-color: var(--pi6s7v__info);
  margin: 0;
}

/* Navbar styles */
#pi6s7v__header nav {
  background-color: transparent;
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
}

#pi6s7v__header .navbar {
  padding: 0;
  position: relative;
}

#pi6s7v__header .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pi6s7v__main_color) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#pi6s7v__header .navbar-toggler {
  border: none;
  background: none;
  outline: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#pi6s7v__header .navbar-toggler:hover {
  background-color: rgba(0,0,0,0.05);
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

#pi6s7v__header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(152,0,2,0.3);
}

#pi6s7v__header .collapse {
  background-color: transparent;
}

#pi6s7v__header .navbar-nav {
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

#pi6s7v__header .nav-item {
  display: inline-block;
}

#pi6s7v__header ._pi6s7v__menu-item {
  padding: 0.75rem 1.2rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.2s ease;
  color: var(--pi6s7v__main_dark);
  text-decoration: none;
}

#pi6s7v__header ._pi6s7v__menu-item:hover,
#pi6s7v__header ._pi6s7v__menu-item:focus {
  background-color: var(--pi6s7v__pastel_white);
  color: var(--pi6s7v__main_color) !important;
  transform: translateY(-2px);
}

#pi6s7v__header ._pi6s7v__menu-item.active,
#pi6s7v__header ._pi6s7v__menu-item:active {
  background-color: var(--pi6s7v__light_accent);
  color: var(--pi6s7v__main_white) !important;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

#pi6s7v__header a.btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

#pi6s7v__header a.btn:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

#pi6s7v__header a.btn:active {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  transform: translateY(0);
}

@media (max-width: 768px) {
  #pi6s7v__header .align-items-baseline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #pi6s7v__header .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  #pi6s7v__header a.btn {
    width: 100%;
    text-align: center;
  }
}
#features {
  background-color: var(--pi6s7v__main_white) !important;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: var(--pi6s7v__font_family);
}

#features .container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

#features .row.align-items-center {
  align-items: center;
  flex-wrap: wrap;
}

#features .py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#features .col-lg-5,
#features .col-xl-5 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
}

#features .col-lg-6 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#features .py-2 img.pi6s7v__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .py-2 img.pi6s7v__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#features h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pi6s7v__main_color) !important;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#features h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pi6s7v__main_dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

#features .row.row-cols-1 {
  gap: 1rem;
}

#features [id^="features_item-"] {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#features [id^="features_item-"] > div {
  background-color: var(--pi6s7v__pastel_white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#features [id^="features_item-"] > div:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

#features [id^="features_item-"] h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--pi6s7v__main_color);
  border-bottom: 2px solid var(--pi6s7v__main_border_color);
  padding-bottom: 0.5rem;
  display: inline-block;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#features [id^="features_item-"] h4:hover {
  color: var(--pi6s7v__dark_color);
  border-color: var(--pi6s7v__dark_color);
}

#features [id^="features_item-"] p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--pi6s7v__main_dark);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #features .col-lg-5,
  #features .col-xl-5 {
    max-width: 100%;
  }
  #features .col-lg-6 {
    max-width: 100%;
    margin-left: 0;
  }
  #features h2 {
    font-size: 1.1rem;
  }
  #features h3 {
    font-size: 1.75rem;
  }
  #features [id^="features_item-"] h4 {
    font-size: 1.1rem;
  }
  #features [id^="features_item-"] p {
    font-size: 0.9rem;
  }
}
#products {
    background-color: rgba(152, 0, 2, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #products .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #products h2 {
    font-family: var(--pi6s7v__font_family);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2rem;
    color: var(--pi6s7v__main_dark) !important;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
  }

  #products h2 svg {
    margin-bottom: 0.125rem;
    margin-right: 0.5rem;
    height: 1.75em;
    width: 1.75em;
    fill: currentColor;
    color: var(--pi6s7v__main_color);
    flex-shrink: 0;
  }

  #products h2 span {
    color: var(--pi6s7v__main_dark) !important;
  }

  #products p {
    color: rgba(33, 37, 41, 0.5);
    margin-bottom: 0;
    font-family: var(--pi6s7v__font_family);
  }

  #products .row-cols-lg-3 {
    gap: 1.5rem;
  }

  #products [id^="products_item-"] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.75);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  #products [id^="products_item-"]:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  #products [id^="products_item-"] .p-3 {
    padding: 1rem;
  }

  #products [id^="products_item-"] h3 {
    font-family: var(--pi6s7v__font_family);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--pi6s7v__main_dark);
  }

  #products [id^="products_item-"] h3 a {
    text-decoration: none;
    color: var(--pi6s7v__pastel_dark);
    transition: color 0.2s;
  }

  #products [id^="products_item-"] h3 a:hover {
    color: var(--pi6s7v__main_color);
  }

  #products [id^="products_item-"] hr {
    border: none;
    border-top: 1px solid rgba(70, 70, 70, 0.2);
    margin: 0.75rem 0;
  }

  #products [id^="products_item-"] .d-flex {
    align-items: center;
    justify-content: space-between;
  }

  #products [id^="products_item-"] .d-inline-flex {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  #products [id^="products_item-"] .fst-italic {
    font-style: italic;
    font-size: 0.9em;
  }

  #products [id^="products_item-"] .text-muted {
    color: rgba(33, 37, 41, 0.6);
  }

  #products [id^="products_item-"] .small {
    font-size: 0.85em;
  }

  #products [id^="products_item-"] .text-decoration-none {
    text-decoration: none !important;
  }

  #products [id^="products_item-"] .link-secondary {
    color: var(--pi6s7v__pastel_dark);
  }

  #products [id^="products_item-"] .link-secondary:hover {
    color: var(--pi6s7v__main_color);
  }

  #products [id^="products_item-"] .mb-1 {
    margin-bottom: 0.25rem;
  }

  #products [id^="products_item-"] .h5 {
    font-family: var(--pi6s7v__font_family);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0;
    color: var(--pi6s7v__main_dark);
  }

  #products [id^="products_item-"] .h5.text-secondary {
    color: var(--pi6s7v__pastel_dark);
  }

  #products [id^="products_item-"] .fw-bold {
    font-weight: 700;
  }

  #products [id^="products_item-"] a {
    display: flex;
    flex-direction: column;
  }

  #products .mt-5 {
    margin-top: 3rem !important;
  }

  #products .text-center {
    text-align: center !important;
  }

  #products a.bg-gradient {
    background: linear-gradient(135deg, var(--pi6s7v__main_color), var(--pi6s7v__light_accent));
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-family: var(--pi6s7v__font_family);
    font-weight: 600;
    font-size: 1rem;
    color: var(--pi6s7v__main_white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.3s, box-shadow 0.3s;
  }

  #products a.bg-gradient:hover {
    background: linear-gradient(135deg, var(--pi6s7v__light_accent), var(--pi6s7v__main_color));
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  @media (max-width: 768px) {
    #products h2 {
      font-size: 1.5rem;
    }

    #products [id^="products_item-"] {
      height: auto;
    }

    #products .row-cols-lg-3 {
      grid-template-columns: repeat(1, 1fr);
    }

    #products a.bg-gradient {
      padding: 0.75rem 2rem;
      font-size: 1.1rem;
    }
  }
