.iq7c3__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --iq7c3__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .iq7c3__loader-wrapper {
        background: var(--iq7c3__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--iq7c3__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--iq7c3__font_family), sans-serif;
        color: var(--iq7c3__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;
        }
    }

    .iq7c3__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--iq7c3__pastel_white);
        border-top: 4px solid var(--iq7c3__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--iq7c3__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--iq7c3__info);
        margin: 0;
    }

    .iq7c3__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .iq7c3__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--iq7c3__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .iq7c3__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .iq7c3__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#hero {
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    padding-bottom: 120px;
    color: var(--iq7c3__main_white);
    font-family: var(--iq7c3__font_family);
    position: relative;
    transition: background 0.3s ease-in-out;
  }

  #hero.iq7c3__bg-abstract {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  #hero .container {
    max-width: 900px;
    margin: 0 auto;
  }

  #hero .content {
    background-color: rgba(38, 38, 34, 0.75) !important;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(38, 38, 34, 0.2);
    backdrop-filter: blur(4px);
  }

  #hero h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d0a52f; /* soft accent for heading */
    margin-bottom: 1.5rem;
    font-weight: 400;
  }

  #hero p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.6;
    color: #f0f3dd; /* pastel white for readability */
    margin-bottom: 2rem;
  }

  #hero .d-grid {
    justify-content: center;
  }

  #hero .d-sm-flex {
    gap: 1rem;
  }

  #hero a.btn.btn-primary {
    background-color: #a2cffe !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 8px rgba(38, 38, 34, 0.2);
    transition: background-color 0.3s, transform 0.2s;
  }

  #hero a.btn.btn-primary:hover {
    background-color: #8fc0e0 !important;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    #hero {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    #hero .content {
      padding: 2rem 1.5rem;
    }
    #hero h2 {
      font-size: clamp(2rem, 6vw, 3rem);
    }
    #hero p {
      font-size: clamp(0.9rem, 2vw, 1.1rem);
    }
  }
#features {
  font-family: var(--iq7c3__font_family);
  line-height: 1.6;
  padding: 4rem 1rem;
  background-color: var(--iq7c3__pastel_dark);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

#features .container {
  max-width: 1200px;
  margin: 0 auto;
}

#features .row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#features .col-lg-10 {
  width: 100%;
}

#features h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--iq7c3__main_white);
  padding-bottom: 1rem;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--iq7c3__font_family);
  transition: color 0.3s ease, transform 0.3s ease;
}

#features h2:hover {
  color: var(--iq7c3__light_accent);
  transform: translateX(2px);
}

#features .card {
  background-color: transparent;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  padding: 1rem;
}

#features .card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  background-color: var(--iq7c3__main_white);
}

#features .card-body {
  padding: 1rem;
  background-color: transparent;
  border-radius: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#features .card-body .lead {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--iq7c3__main_dark);
}

#features .card-body p {
  margin: 0;
}

#features .card-body strong {
  color: var(--iq7c3__light_accent);
  font-weight: 700;
}

#features .card-body span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

#features .card-body .lead::before {
  content: "✓";
  color: var(--iq7c3__light_accent);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #features h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  #features .row {
    gap: 1.5rem;
  }
  #features .card {
    padding: 0.75rem;
  }
}
#iq7c3__footer {
    background-color: #a2cffe !important;
    color: var(--iq7c3__main_dark);
    font-family: var(--iq7c3__font_family);
    font-size: var(--iq7c3__font_size)px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
  }

  #iq7c3__footer svg {
    transition: opacity 0.3s ease;
  }

  #iq7c3__footer svg:hover {
    opacity: 0.1;
  }

  #iq7c3__footer .container {
    padding: 2rem 1rem;
  }

  #iq7c3__footer h6 {
    font-weight: 700;
    color: var(--iq7c3__dark_color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }

  #iq7c3__footer h6 + ul {
    margin-top: 0.5rem;
  }

  #iq7c3__footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #iq7c3__footer li {
    margin-bottom: 0.75rem;
  }

  #iq7c3__footer li:last-child {
    margin-bottom: 0;
  }

  #iq7c3__footer a {
    color: var(--iq7c3__dark_color);
    text-decoration: underline;
    transition: color 0.2s, transform 0.2s;
  }

  #iq7c3__footer a:hover,
  #iq7c3__footer a:focus {
    color: #4a7c43;
    transform: translateY(-1px);
  }

  #iq7c3__footer .small {
    font-size: 0.9rem;
    color: var(--iq7c3__grey);
  }

  #iq7c3__footer h6:nth-of-type(3) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
  }

  #iq7c3__footer p {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--iq7c3__grey);
  }

  #iq7c3__footer .position-absolute {
    opacity: 0.05;
    transition: opacity 0.3s ease;
  }

  @media (max-width: 768px) {
    #iq7c3__footer {
      text-align: center;
    }

    #iq7c3__footer .text-sm-end {
      text-align: center !important;
    }

    #iq7c3__footer h6:nth-of-type(3) {
      padding: 0 0.5rem;
    }
  }
#promotions {
  background-color: var(--iq7c3__main_white);
  color: var(--iq7c3__main_dark);
  padding: 3rem 1.5rem;
  font-family: var(--iq7c3__font_family);
  transition: background-color 0.3s ease, color 0.3s ease;
}

#promotions .container {
  max-width: 1140px;
  margin: 0 auto;
}

#promotions .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#promotions .lead {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--iq7c3__main_dark);
}

#promotions .col-lg-5 {
  flex: 1 1 40%;
  min-width: 250px;
}

#promotions .col-lg-7 {
  flex: 1 1 60%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

#promotions .iq7c3__primary-button {
  background-color: var(--iq7c3__main_color);
  color: var(--iq7c3__main_white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#promotions .iq7c3__primary-button:hover {
  background-color: var(--iq7c3__light_accent);
  transform: translateY(-2px);
}

#promotions .display-2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--iq7c3__dark_color);
  margin-top: 1rem;
  margin-bottom: 2rem;
  word-break: break-word;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

#promotions .display-2:hover {
  color: var(--iq7c3__light_accent);
}

@media (max-width: 768px) {
  #promotions .row {
    flex-direction: column;
    align-items: stretch;
  }
  #promotions .col-lg-5,
  #promotions .col-lg-7 {
    flex: 1 1 100%;
    min-width: 100%;
  }
  #promotions .display-2 {
    font-size: 2rem;
  }
  #promotions .lead {
    font-size: 1rem;
  }
  #promotions .iq7c3__primary-button {
    align-self: stretch;
    text-align: center;
  }
}
#faq {
    background-color: #bac065 !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  #faq h3 {
    color: #262622 !important;
    font-family: var(--iq7c3__font_family);
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: left;
    padding-top: 0;
    padding-bottom: 2rem;
    margin: 0 auto;
    max-width: 1200px;
  }
  #faq .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  #faq .justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  #faq [id^="faq_item-"] {
    width: 100%;
    max-width: 400px;
  }
  #faq .content-box {
    background-color: #f0f3dd;
    border: 1px solid var(--iq7c3__main_border_color);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(38, 38, 38, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  #faq .content-box:hover {
    box-shadow: 0 8px 24px rgba(38, 38, 38, 0.15);
    transform: translateY(-0.25rem);
  }
  #faq h2 {
    display: flex;
    align-items: flex-start;
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #262622;
  }
  #faq h2 span {
    color: #262622;
  }
  #faq .content-box div {
    font-family: var(--iq7c3__font_family);
    font-size: 1rem;
    line-height: 1.5;
    color: #262622;
  }
  @media (max-width: 768px) {
    #faq h3 {
      font-size: 2rem;
      text-align: center;
    }
    #faq .justify-content-center {
      flex-direction: column;
      align-items: center;
    }
    #faq [id^="faq_item-"] {
      max-width: 90%;
    }
  }
#iq7c3__header {
    font-family: var(--iq7c3__font_family);
    color: var(--iq7c3__main_dark);
  }

  #iq7c3__header .bg-white {
    background-color: var(--iq7c3__main_white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  #iq7c3__header .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  #iq7c3__header .small {
    font-size: 0.85em;
  }

  #iq7c3__header .text-center {
    text-align: center;
  }

  #iq7c3__header .text-md-start {
    text-align: start;
  }

  #iq7c3__header .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  #iq7c3__header .align-items-end {
    align-items: flex-end !important;
  }

  #iq7c3__header .row {
    display: flex;
    flex-wrap: wrap;
  }

  #iq7c3__header .col-md {
    flex: 1 1 auto;
  }

  #iq7c3__header .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  #iq7c3__header svg {
    vertical-align: middle;
    margin-right: 0.5em;
    color: var(--iq7c3__dark_color);
    transition: color 0.3s ease;
  }

  #iq7c3__header svg:hover {
    color: var(--iq7c3__light_accent);
  }

  #iq7c3__header span {
    font-weight: 500;
    font-size: 1em;
    color: var(--iq7c3__main_dark);
  }

  #iq7c3__header hr {
    border: none;
    height: 1px;
    background-color: var(--iq7c3__info);
    margin: 0;
  }

  #iq7c3__header .navbar {
    background-color: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #iq7c3__header .navbar-brand {
    font-weight: 600;
    font-size: 1.25em;
    color: var(--iq7c3__dark_color);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
  }

  #iq7c3__header .navbar-brand:hover {
    color: var(--iq7c3__light_accent);
  }

  #iq7c3__header .navbar-toggler {
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  #iq7c3__header .navbar-toggler:hover {
    transform: rotate(90deg);
  }

  #iq7c3__header .navbar-toggler-icon {
    background-color: var(--iq7c3__dark_color);
  }

  #iq7c3__header .navbar-collapse {
    transition: max-height 0.3s ease;
  }

  #iq7c3__header .navbar-nav {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #iq7c3__header .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }

  #iq7c3__header ._iq7c3__menu-item {
    padding: 0.75em 1.5em;
    border-radius: 0.5em;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--iq7c3__main_dark);
    font-weight: 500;
  }

  #iq7c3__header ._iq7c3__menu-item:hover {
    background-color: var(--iq7c3__light_color);
    color: var(--iq7c3__main_white) !important;
  }

  #iq7c3__header .btn.btn-primary {
    background-color: var(--iq7c3__main_color) !important;
    color: var(--iq7c3__main_white) !important;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  #iq7c3__header .btn.btn-primary:hover {
    background-color: var(--iq7c3__light_accent) !important;
    transform: translateY(-2px);
  }

  #iq7c3__header .ms-lg-3 {
    margin-left: 1.5rem !important;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #iq7c3__header .navbar-nav {
      align-items: stretch;
    }

    #iq7c3__header .navbar-nav .nav-item {
      width: 100%;
      text-align: center;
    }

    #iq7c3__header .ms-lg-3 {
      margin-left: 0 !important;
      margin-top: 1rem !important;
    }
  }
#contacts {
  background-color: var(--iq7c3__pastel_dark) !important;
  color: var(--iq7c3__main_white) !important;
  font-family: var(--iq7c3__font_family);
}

#contacts .container {
  padding: 0;
}

#contacts .iq7c3__image-background {
  background: linear-gradient(135deg, rgba(182, 192, 101, 0.2), rgba(182, 192, 101, 0.1));
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(38, 38, 38, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contacts .iq7c3__image-background:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(38, 38, 38, 0.15);
}

#contacts .pb-md-5 {
  padding-bottom: 3rem !important;
}

#contacts .pt-5 {
  padding-top: 3rem !important;
}

#contacts .bg-light {
  background-color: var(--iq7c3__main_white) !important;
}

#contacts .iq7c3__custom-simple-block6 {
  opacity: 0.9;
  background-color: transparent;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--iq7c3__main_border_color);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

#contacts .iq7c3__custom-simple-block6:hover {
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
  border-color: var(--iq7c3__light_accent);
}

#contacts .d-flex {
  display: flex !important;
}

#contacts .flex-wrap {
  flex-wrap: wrap !important;
}

#contacts .gap-2 {
  gap: 1rem;
}

#contacts p {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: calc(var(--iq7c3__font_size) * 1.1);
  color: #262622;
}

#contacts h1 {
  font-size: calc(var(--iq7c3__font_size) * 3);
  font-weight: 300;
  font-style: italic;
  color: #262622;
  margin-top: 2rem;
  line-height: 1.2;
  word-break: break-word;
  transition: color 0.3s ease;
}

#contacts h1:hover {
  color: var(--iq7c3__light_accent);
}

#contacts h1 .text-break {
  word-break: break-word;
}

@media (max-width: 768px) {
  #contacts .pb-md-5 {
    padding-bottom: 2rem !important;
  }
  #contacts h1 {
    font-size: calc(var(--iq7c3__font_size) * 2);
  }
  #contacts .pt-5 {
    padding-top: 2rem !important;
  }
  #contacts .iq7c3__image-background {
    padding: 1rem;
  }
}
#about {
    background-color: var(--iq7c3__pastel_white) !important;
    color: var(--iq7c3__main_dark);
    font-family: var(--iq7c3__font_family);
  }

  #about .container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #about > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #about .my-2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    padding: 0 1rem;
  }

  #about h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 300;
    color: #4a6b29; /* baby poop green for headings */
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    word-break: break-word;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  #about h2:hover {
    color: #5a7f33;
    transform: translateY(-2px);
  }

  #about .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--iq7c3__main_dark);
    opacity: 0.95;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  /* Responsive typography for smaller screens */
  @media (max-width: 768px) {
    #about h2 {
      font-size: 2rem;
    }
    #about .lead {
      font-size: 1rem;
    }
  }

  /* Enhance readability with contrast and spacing */
  #about .lead {
    background-color: transparent;
  }

  /* Optional: Add subtle background and shadow to the text container for depth */
  #about .my-2 {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }

  #about .my-2:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
  }
#contacts-form {
  background-color: transparent;
  font-family: var(--iq7c3__font_family);
  color: var(--iq7c3__main_dark);
}

#contacts-form .container {
  max-width: 1200px;
  margin: 0 auto;
}

#contacts-form h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--iq7c3__main_color) !important;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 0.3s ease;
}

#contacts-form p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--iq7c3__main_dark);
}

#contacts-form .py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#contacts-form .py-3 > .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

#contacts-form .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

#contacts-form .col-lg-5,
#contacts-form .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

#contacts-form .col-lg-5 {
  padding: 1.5rem;
  background-color: transparent;
}

#contacts-form .col-lg-6 {
  padding: 1.5rem;
  background-color: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
}

#contacts-form .iq7c3cf-form-wrapper {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

#contacts-form .iq7c3cf-form-wrapper:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.07);
  background-color: rgba(240, 243, 221, 0.95);
}

#contacts-form h4,
#contacts-form h2 {
  font-weight: 700;
  color: var(--iq7c3__main_color) !important;
  margin-bottom: 1rem;
}

#contacts-form p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--iq7c3__main_dark);
  margin-bottom: 1.5rem;
}

#contacts-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contacts-form .form-control-iq7c39 {
  border: 1px solid var(--iq7c3__main_color);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contacts-form .form-control-iq7c39:focus {
  outline: none;
  border-color: var(--iq7c3__light_accent);
  box-shadow: 0 0 0 3px rgba(162, 207, 254, 0.2);
}

#contacts-form .custom-select {
  border-radius: 16px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--iq7c3__main_color);
  background-color: transparent;
  appearance: none;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contacts-form .custom-select:focus {
  outline: none;
  border-color: var(--iq7c3__light_accent);
  box-shadow: 0 0 0 3px rgba(162, 207, 254, 0.2);
}

#contacts-form .iq7c3__primary-button {
  background-color: var(--iq7c3__main_color);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#contacts-form .iq7c3__primary-button:hover {
  background-color: #8fc0ff;
  box-shadow: 0 4px 12px rgba(162, 207, 254, 0.3);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--iq7c3__main_dark);
}

#contacts-form .form-check-input-iq7c3-cst9 {
  background: var(--iq7c3__main_white);
  border: 1px solid var(--iq7c3__main_color);
  border-radius: 4px;
  width: 1.2em;
  height: 1.2em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contacts-form .form-check-input-iq7c3-cst9:focus {
  outline: none;
  border-color: var(--iq7c3__light_accent);
  box-shadow: 0 0 0 3px rgba(162, 207, 254, 0.2);
}

#contacts-form a {
  color: var(--iq7c3__main_color) !important;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#contacts-form a:hover {
  color: #8fc0ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  #contacts-form .row {
    flex-direction: column;
  }
  #contacts-form .col-lg-5,
  #contacts-form .col-lg-6 {
    padding: 1rem;
  }
}
#products {
    background-color: transparent;
    padding: 2rem 1rem;
    font-family: var(--iq7c3__font_family);
  }
  #products h2 {
    font-size: clamp(1.75rem, 2vw, 2.5rem);
    color: var(--iq7c3__main_dark) !important;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  #products p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--iq7c3__main_dark);
    max-width: 800px;
    margin: 0 auto 2rem auto;
  }
  #products .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #products [id^="products_item-"] {
    width: 100%;
    max-width: 350px;
  }
  @media (min-width: 768px) {
    #products [id^="products_item-"] {
      max-width: 30%;
    }
  }
  #products .card {
    background: transparent;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  #products .card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
  #products .card-body {
    background-color: var(--iq7c3__pastel_white);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  #products .card-body:hover {
    background-color: #f5f5f5;
  }
  #products h2 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    color: var(--iq7c3__info);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  #products p {
    font-size: 0.95rem;
    color: var(--iq7c3__main_dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  #products h4 {
    font-size: 1rem;
    color: var(--iq7c3__main_dark);
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
  }
  #products h4:hover {
    color: var(--iq7c3__light_accent);
  }
  #products a.btn {
    background-color: #fff !important;
    color: var(--iq7c3__light_color) !important;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  #products a.btn:hover {
    background-color: var(--iq7c3__light_accent);
    color: #fff !important;
    transform: translateY(-2px);
  }
  /* Accent color for borders and headings */
  #products .border-top__iq7c3__dark_accent {
    border-top: 4px solid var(--iq7c3__dark_accent);
    border-radius: 1rem 1rem 0 0;
  }
  /* Responsive adjustments for small screens */
  @media (max-width: 767px) {
    #products .card-body {
      padding: 1.5rem 1rem;
    }
    #products h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
    }
    #products p {
      font-size: 0.9rem;
    }
  }
