.ekdgtwo__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --ekdgtwo__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ekdgtwo__loader-wrapper {
        background: var(--ekdgtwo__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--ekdgtwo__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--ekdgtwo__font_family), sans-serif;
        color: var(--ekdgtwo__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;
        }
    }

    .ekdgtwo__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--ekdgtwo__pastel_white);
        border-top: 4px solid var(--ekdgtwo__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--ekdgtwo__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--ekdgtwo__info);
        margin: 0;
    }

    .ekdgtwo__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .ekdgtwo__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--ekdgtwo__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .ekdgtwo__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .ekdgtwo__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }








#hero {
    background-color: #262622 !important;
    color: var(--ekdgtwo__main_white) !important;
    font-family: var(--ekdgtwo__font_family);
  }

  #hero .py-4 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  #hero .ekdgtwo__bg-abstract {
    background: linear-gradient(135deg, #3d3f1b, #606612);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
  }

  #hero .bg-secondary {
    background-color: #3d3f1b !important;
    opacity: 0.9;
    border: 2px solid var(--ekdgtwo__main_border_color);
    border-radius: 1rem;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
  }

  #hero p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ekdgtwo__light_color);
    margin-bottom: 1rem;
  }

  #hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ekdgtwo__main_white);
    margin-bottom: 1.5rem;
    border-left: 4px solid #8a8a4d; /* subtle steampunk accent */
    padding-left: 0.75rem;
  }

  #hero p:last-child {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  #hero .ekdgtwo__short-button {
    display: inline-block;
    background-color: #ad900d;
    color: var(--ekdgtwo__main_white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
  }

  #hero .ekdgtwo__short-button:hover {
    background-color: #8a7a0b;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    #hero h1 {
      font-size: 1.5rem;
      padding-left: 0.5rem;
    }
    #hero p {
      font-size: 0.9rem;
    }
    #hero .ekdgtwo__short-button {
      width: 100%;
      text-align: center;
      padding: 0.75rem 0;
    }
  }
#contacts {
  font-family: 'Space Grotesk', sans-serif;
  background-color: transparent;
  color: var(--ekdgtwo__main_dark);
}

#contacts .container {
  padding: 2rem 1rem;
}

#contacts .row {
  /* Keep existing Bootstrap layout, no modifications */
}

#contacts > .py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

#contacts .bg-light {
  background-color: #c8b661 !important;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 2px solid #ad900d;
  transition: transform 0.3s, box-shadow 0.3s;
}

#contacts .bg-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

#contacts h2 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: var(--ekdgtwo__pastel_dark) !important;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--ekdgtwo__main_color);
  display: inline-block;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
}

#contacts h3 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ekdgtwo__main_dark);
  word-wrap: break-word;
}

#contacts p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  color: var(--ekdgtwo__main_dark);
  max-width: 800px;
}

#contacts h3, #contacts p {
  font-family: 'Space Grotesk', sans-serif;
}

#contacts h3 {
  border-left: 4px solid var(--ekdgtwo__main_color);
  padding-left: 1rem;
}

#contacts p {
  margin-top: 1rem;
}

#contacts a {
  color: var(--ekdgtwo__main_color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, transform 0.3s;
}

#contacts a:hover {
  color: var(--ekdgtwo__light_accent);
  transform: translateY(-2px);
}

#contacts .fw-light {
  font-weight: 300;
}

@media (max-width: 768px) {
  #contacts .bg-light {
    padding: 1.5rem;
  }

  #contacts h3 {
    font-size: 1.75rem;
  }

  #contacts p {
    font-size: 0.95rem;
  }
}
#ekdgtwo__footer {
    background-color: #262622 !important;
    color: var(--ekdgtwo__light_color) !important;
    border-top: 4px solid var(--ekdgtwo__dark_color);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: var(--ekdgtwo__font_family);
  }

  #ekdgtwo__footer .container {
    padding: 1.5rem;
  }

  #ekdgtwo__footer .row {
    margin-bottom: 1rem;
  }

  #ekdgtwo__footer a {
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
  }

  #ekdgtwo__footer a._ekdgtwo__menu-item {
    color: var(--ekdgtwo__light_color);
    padding: 0.75rem 1.5rem;
    display: inline-block;
  }

  #ekdgtwo__footer a._ekdgtwo__menu-item:hover {
    background-color: rgba(173, 144, 13, 0.2);
    color: #ad900d;
  }

  #ekdgtwo__footer img {
    border-radius: 0.5rem;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
  }

  #__ekdgtwo__common_description {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    color: var(--ekdgtwo__light_color);
  }

  #ekdgtwo__footer hr {
    border-color: var(--ekdgtwo__dark_border_color);
    opacity: 0.5;
  }

  #ekdgtwo__footer h5 {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--ekdgtwo__warning);
    margin: 1rem 0;
  }

  #ekdgtwo__footer .row.gy-3 {
    align-items: center;
  }

  #ekdgtwo__footer .col-lg-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #ekdgtwo__footer .col-lg-6 a {
    margin-bottom: 0.5rem;
  }

  #ekdgtwo__footer .col-lg-6 span {
    display: block;
    margin-top: 0.25rem;
  }

  /* Outstaffra header style */
  #ekdgtwo__footer .col-lg-3 {
    margin-bottom: 1rem;
  }

  #ekdgtwo__footer .col-lg-3 a {
    font-family: var(--ekdgtwo__font_family);
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ekdgtwo__light_color);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  #ekdgtwo__footer .col-lg-3 a:hover {
    color: #ad900d;
    background-color: rgba(173, 144, 13, 0.1);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #ekdgtwo__footer .row {
      flex-direction: column;
      align-items: stretch;
    }
    #ekdgtwo__footer .col-lg-3,
    #ekdgtwo__footer .col-lg-6 {
      align-items: flex-start;
    }
    #ekdgtwo__footer a._ekdgtwo__menu-item {
      padding: 0.5rem 1rem;
      width: 100%;
      text-align: left;
    }
  }
#features {
    background-color: #f0f3dd !important;
    color: #262622 !important;
    font-family: 'Space Grotesk', sans-serif;
  }

  #features h2 {
    color: #ad900d !important;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5em;
  }

  #features h3 {
    color: #ad900d !important;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1em;
  }

  #features p.lead {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.5;
    color: #606612 !important;
  }

  #features .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  #features .row {
    width: 100%;
  }

  #features .row.justify-content-around {
    margin-top: 2rem;
  }

  #features .row.g-3 {
    margin-top: 2rem;
  }

  #features [id^="features_item-"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #features [id^="features_item-"] .rounded-2 {
    background-color: #f0f3dd !important;
    border: 2px solid var(--ekdgtwo__main_border_color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(38, 38, 38, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #features [id^="features_item-"] .rounded-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(38, 38, 38, 0.2);
  }

  #features [id^="features_item-"] h3 {
    color: #ad900d !important;
    font-size: 1.25rem;
    margin-bottom: 0.75em;
    line-height: 1.3;
  }

  #features [id^="features_item-"] p {
    color: #262622 !important;
    font-size: 1rem;
    line-height: 1.5;
  }

  #features [id^="features_item-"] h3,
  #features [id^="features_item-"] p {
    word-break: break-word;
  }

  /* Emphasize headings with a decorative element resembling steampunk style */
  #features h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 50px;
    margin-top: 0.5em;
    background-color: #ad900d;
    border-radius: 1px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Style for the overall section to reflect steampunk aesthetic with metallic accents */
  #features {
    background-color: #f0f3dd !important;
    position: relative;
  }

  #features::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      45deg,
      rgba(173, 144, 13, 0.1) 25%,
      transparent 25%,
      transparent 75%,
      rgba(173, 144, 13, 0.1) 75%,
      rgba(173, 144, 13, 0.1)
    );
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
  }

  #features h2,
  #features h3 {
    position: relative;
    z-index: 1;
  }

  /* Add decorative steampunk elements to icons or optional parts if any are added later */
  /* For now, headings already styled with color and spacing; icons can be styled with pseudo-elements if needed */

  /* Responsive adjustments */
  @media (max-width: 768px) {
    #features h3 {
      font-size: 1.5rem;
    }

    #features p.lead {
      font-size: 0.9rem;
    }

    #features [id^="features_item-"] .rounded-2 {
      padding: 1rem;
    }

    #features [id^="features_item-"] h3::after {
      width: 30px;
    }
  }
#faq {
    font-family: var(--ekdgtwo__font_family);
  }

  #faq h3 {
    font-size: calc(2.5rem + 1vw);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--ekdgtwo__main_color) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  }

  #faq h3 span {
    display: inline-block;
    border-bottom: 4px solid var(--ekdgtwo__main_color);
    padding-bottom: 0.2em;
  }

  #faq .container {
    background-color: transparent;
  }

  #faq .row {
    gap: 1.5rem;
  }

  #faq_item-1,
  #faq_item-2,
  #faq_item-3,
  #faq_item-4 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  #faq div[id^="faq_item-"] > div {
    background-color: transparent;
  }

  #faq .content-box {
    border: 2px solid var(--ekdgtwo__dark_color);
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 2rem;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #faq .content-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }

  #faq h2 {
    display: flex;
    align-items: flex-end;
    font-weight: 300;
    font-size: calc(1.25rem + 0.5vw);
    margin-bottom: 1rem;
    color: var(--ekdgtwo__dark_color);
  }

  #faq h2 span {
    display: inline-block;
    border-bottom: 3px solid var(--ekdgtwo__main_color);
    padding-bottom: 0.2em;
  }

  #faq div:nth-of-type(1) {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
  }

  #faq .content-box h2,
  #faq .content-box div {
    max-width: 100%;
  }

  #faq .content-box div {
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
  }

  #faq .border-2 {
    border-width: 2px !important;
  }

  #faq .border-dark {
    border-color: var(--ekdgtwo__dark_color) !important;
  }

  @media (max-width: 768px) {
    #faq .row {
      flex-direction: column;
    }
    #faq .content-box {
      padding: 1.5rem;
    }
  }

  /* Accent color for headings and links to reflect steampunk aesthetic with baby poop green tone */
  #faq h2 span,
  #faq a {
    color: var(--ekdgtwo__main_color) !important;
  }

  /* Additional visual refinement for content boxes */
  #faq .content-box {
    background: linear-gradient(135deg, #f0f3dd, #d0d495);
    backdrop-filter: blur(4px);
    border: 1px solid var(--ekdgtwo__dark_color);
  }

  /* Style links within content for a subtle steampunk metallic effect */
  #faq div a {
    border-bottom: 1px dashed var(--ekdgtwo__light_accent);
    padding-bottom: 0.1em;
    transition: color 0.3s, border-bottom-color 0.3s;
  }

  #faq div a:hover {
    color: var(--ekdgtwo__dark_accent);
    border-bottom-color: var(--ekdgtwo__dark_accent);
  }
#ekdgtwo__header {
  font-family: var(--ekdgtwo__font_family);
  color: var(--ekdgtwo__main_dark);
}

#ekdgtwo__header .bg-white {
  background-color: var(--ekdgtwo__main_white) !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  border-bottom: 2px solid var(--ekdgtwo__main_border_color);
}

#ekdgtwo__header hr {
  border: none;
  height: 2px;
  background-color: var(--ekdgtwo__info) !important;
  margin: 0;
}

#ekdgtwo__header nav {
  background-color: transparent;
}

#ekdgtwo__header .navbar-brand {
  font-family: var(--ekdgtwo__font_family);
  font-size: 1.75rem;
  color: var(--ekdgtwo__dark_color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#ekdgtwo__header .navbar-toggler {
  border: 2px solid var(--ekdgtwo__dark_color);
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#ekdgtwo__header .navbar-toggler:hover {
  background-color: rgba(0,0,0,0.05);
}

#ekdgtwo__header .navbar-toggler-icon {
  background-image: none;
  border: solid 2px var(--ekdgtwo__dark_color);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
}

#ekdgtwo__header .navbar-collapse {
  padding-top: 1rem;
}

#ekdgtwo__header .navbar-nav {
  align-items: center;
}

#ekdgtwo__header .nav-item {
  margin: 0 0.75rem;
}

#ekdgtwo__header ._ekdgtwo__menu-item {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ekdgtwo__dark_color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

#ekdgtwo__header ._ekdgtwo__menu-item:hover,
#ekdgtwo__header ._ekdgtwo__menu-item:focus {
  background-color: var(--ekdgtwo__light_accent);
  color: #fff;
}

#ekdgtwo__header .btn {
  font-family: var(--ekdgtwo__font_family);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#ekdgtwo__header .btn-primary {
  background-color: var(--ekdgtwo__main_color) !important;
  border: 2px solid var(--ekdgtwo__dark_accent);
  box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

#ekdgtwo__header .btn-primary:hover {
  background-color: #996d0b;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.3);
}

#ekdgtwo__header .bg-white {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

#ekdgtwo__header svg {
  margin-right: 0.5em;
  vertical-align: middle;
  fill: var(--ekdgtwo__dark_color);
  transition: fill 0.3s;
}

#ekdgtwo__header span {
  font-size: 0.95rem;
  color: var(--ekdgtwo__main_dark);
}

@media (max-width: 768px) {
  #ekdgtwo__header .bg-white {
    flex-direction: column;
    align-items: flex-start;
  }
  #ekdgtwo__header .navbar-nav {
    width: 100%;
    padding-left: 0;
  }
  #ekdgtwo__header .nav-item {
    margin: 0.5rem 0;
  }
  #ekdgtwo__header .btn {
    width: 100%;
    text-align: center;
  }
}
#products {
    background-color: #d0d495 !important; /* using site border color for subtle background */
    color: var(--ekdgtwo__main_dark);
    font-family: 'Space Grotesk', sans-serif;
  }

  #products h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: #a4ac35 !important; /* baby poop green for headings */
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  #products h2 svg {
    margin-right: 0.75rem;
    fill: var(--ekdgtwo__main_color);
    width: 1.75em;
    height: 1.75em;
  }

  #products h2 span {
    max-width: 80%;
  }

  #products p {
    font-size: 1rem;
    line-height: 1.5;
    color: #606612 !important; /* dark text for readability */
    margin-top: 0.5rem;
    max-width: 90%;
  }

  #products .row {
    margin-top: 2rem;
  }

  #products [id^="products_item-"] {
    transition: transform 0.3s, box-shadow 0.3s;
  }

  #products [id^="products_item-"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(38, 38, 38, 0.2);
  }

  #products [id^="products_item-"] > div {
    background-color: #f0f3dd; /* pastel white for contrast */
    background-image: linear-gradient(135deg, #f0f3dd 25%, #d0d495 75%);
    border-radius: 0.75rem;
    box-shadow: 0 4px 8px rgba(38, 38, 38, 0.1);
    overflow: hidden;
  }

  #products [id^="products_item-"] .p-3 {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
  }

  #products [id^="products_item-"] h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #a4ac35 !important; /* baby poop green for titles */
    margin-bottom: 0.75rem;
  }

  #products [id^="products_item-"] h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
  }

  #products [id^="products_item-"] h3 a:hover {
    color: var(--ekdgtwo__main_color);
  }

  #products hr {
    border: none;
    border-top: 1px dashed #787f0b;
    margin: 1rem 0;
  }

  #products [id^="products_item-"] .align-items-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
  }

  #products [id^="products_item-"] .align-items-center a {
    color: #606612;
    text-decoration: none;
    font-style: italic;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 80%;
  }

  #products [id^="products_item-"] .align-items-center a span {
    color: #606612;
  }

  #products [id^="products_item-"] .align-items-center .link-secondary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 80px;
  }

  #products [id^="products_item-"] .align-items-center .link-secondary p {
    margin: 0;
    font-size: 0.75rem;
    color: #606612;
  }

  #products [id^="products_item-"] .align-items-center .link-secondary span {
    font-weight: 700;
    font-size: 1.25rem;
    color: #606612;
  }

  #products .mt-5 {
    margin-top: 3rem;
  }

  #products .text-right {
    text-align: right;
  }

  #products .ekdgtwo__primary-button {
    background: linear-gradient(135deg, #ad900d, #a4ac35);
    color: var(--ekdgtwo__main_white);
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(38, 38, 38, 0.2);
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
  }

  #products .ekdgtwo__primary-button:hover {
    background: linear-gradient(135deg, #a4ac35, #ad900d);
    box-shadow: 0 6px 16px rgba(38, 38, 38, 0.3);
  }

  /* Responsive adjustments */
  @media(max-width: 768px) {
    #products h2 {
      font-size: 1.75rem;
    }
    #products .align-items-center {
      flex-direction: column;
      align-items: flex-start;
    }
    #products .align-items-center .link-secondary {
      align-items: flex-start;
      margin-top: 1rem;
    }
    #products .text-right {
      text-align: center;
    }
  }
#contacts-form {
  --section-bg-color: #f0f3dd; /* Light pastel for background, slightly adjusted for steampunk */
  --accent-color: #ad900d; /* Baby poop green as accent, used for headings and links */

  font-family: var(--ekdgtwo__font_family);
  line-height: 1.6;
  color: var(--ekdgtwo__main_dark);
  background-color: var(--section-bg-color);
}

#contacts-form .container {
  max-width: 1200px;
  margin: 0 auto;
}

#contacts-form h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

#contacts-form p {
  font-size: 1rem;
  color: var(--ekdgtwo__pastel_dark);
  margin-bottom: 1.5rem;
}

#contacts-form .ekdgtwocf-form-wrapper {
  background: linear-gradient(135deg, #f0f3dd 0%, #d0d495 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(38, 38, 38, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#contacts-form .ekdgtwocf-form-wrapper:hover {
  box-shadow: 0 8px 24px rgba(38, 38, 38, 0.2);
  transform: translateY(-2px);
}

#contacts-form input[type="text"],
#contacts-form input[type="email"],
#contacts-form textarea,
#contacts-form select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--ekdgtwo__main_border_color);
  background-color: var(--ekdgtwo__pastel_white);
  color: var(--ekdgtwo__main_dark);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#contacts-form input[type="text"]:focus,
#contacts-form input[type="email"]:focus,
#contacts-form textarea:focus,
#contacts-form select:focus {
  outline: none;
  border-color: var(--ekdgtwo__light_color);
  box-shadow: 0 0 0 3px rgba(172, 166, 101, 0.3);
}

#contacts-form .ekdgtwo__primary-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2.5rem;
  background-color: var(--accent-color) !important;
  color: var(--ekdgtwo__main_white) !important;
  font-weight: 600;
  border: none;
  border-radius: 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(38, 38, 38, 0.1);
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

#contacts-form .ekdgtwo__primary-button:hover {
  background-color: #a37c0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(38, 38, 38, 0.2);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

#contacts-form .form-check-input {
  accent-color: var(--accent-color);
}

#contacts-form .form-check-label {
  font-size: 0.95rem;
  color: var(--ekdgtwo__main_dark);
}

#contacts-form .form-check-label a {
  color: var(--accent-color);
  text-decoration: underline dotted;
  transition: color 0.3s;
}

#contacts-form .form-check-label a:hover {
  color: #8a750c;
  text-decoration: underline dashed;
}

#contacts-form .g-4 {
  gap: 1.25rem !important;
}

#contacts-form svg {
  display: block;
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: var(--ekdgtwo__light_color);
}



#contacts-form .row p {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}

#contacts-form .row p span {
  display: inline-block;
}

#contacts-form .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 8px rgba(38, 38, 38, 0.1);
}

@media (max-width: 768px) {
  #contacts-form .row {
    flex-direction: column;
  }
  #contacts-form h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
  }
  #contacts-form p {
    text-align: center;
  }
  #contacts-form .ekdgtwocf-form-wrapper {
    padding: 1.5rem;
  }
  #contacts-form .img-fluid {
    margin-top: 1.5rem;
  }
}
#about {
  /* Background and text color enhancements */
  background-color: #f0f3dd !important; /* pastel white background for overall section */
  color: var(--ekdgtwo__main_dark) !important; /* ensure base text is dark for readability */

  /* Padding adjustments for spaciousness */
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Container styling for content separation */
#about .container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Headline styling */
#about h3 {
  font-family: var(--ekdgtwo__font_family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #4b5320 !important; /* baby poop green as accent for headings */
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Paragraph styling for clarity and elegance */
#about p {
  font-family: var(--ekdgtwo__font_family);
  font-size: 1rem;
  line-height: 1.6;
  color: #606612 !important; /* darker tone for readability */
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Button styling for high contrast and engagement */
#about .ekdgtwo__primary-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--ekdgtwo__font_family);
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  background-color: #ad900d !important; /* baby poop green as main accent */
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}
#about .ekdgtwo__primary-button:hover {
  background-color: #8a7a0b !important;
  transform: translateY(-2px);
}

/* Image container styling for visual depth */
#about .row.align-items-start.justify-content-center {
  gap: 1rem;
  margin-top: 1rem;
}

/* Image styling for aesthetic richness */
#about .ekdgtwo__image {
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 100%;
  height: auto;
  transition: transform 0.3s, box-shadow 0.3s;
}
#about .ekdgtwo__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  #about h3 {
    font-size: 1.75rem;
  }
  #about p {
    font-size: 0.95rem;
  }
  #about .row.align-items-start.justify-content-center {
    flex-direction: column;
    align-items: center;
  }
  #about .col-10.col-sm-6 {
    width: 100%;
  }
  #about .ekdgtwo__image {
    max-width: 90%;
  }
}
#promotions {
  background-color: #f0f3dd !important; /* Light background for contrast */
  font-family: var(--ekdgtwo__font_family);
  color: var(--ekdgtwo__main_dark);
  position: relative;
}

#promotions .container {
  max-width: 1200px;
  margin: 0 auto;
}

#promotions h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #4a5f3b !important; /* Baby poop green for headings */
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.2;
  word-break: break-word;
}

#promotions h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #4a5f3b !important; /* Baby poop green for subheadings */
  margin-bottom: 1.5rem;
  line-height: 1.3;
  word-break: break-word;
}

#promotions p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #3d3f1b !important; /* Slightly darker for readability */
  margin-bottom: 2rem;
}

#promotions .py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#promotions .ekdgtwo__short-button {
  display: inline-block;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #4a5f3b;
  background-color: transparent;
  color: #4a5f3b;
  border-radius: 0.5em;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-family: var(--ekdgtwo__font_family);
}

#promotions .ekdgtwo__short-button:hover {
  background-color: #4a5f3b;
  color: var(--ekdgtwo__main_white);
  border-color: #4a5f3b;
}

#promotions .ekdgtwo__image {
  border-radius: 1em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

#promotions .ekdgtwo__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #promotions h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  #promotions h3 {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
  #promotions p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  #promotions .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #promotions .ekdgtwo__short-button {
    padding: 0.5em 1em;
    font-size: 0.9rem;
  }
  #promotions .ekdgtwo__image {
    border-radius: 0.75em;
  }
}
