.osiddhg__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;
    }

    .osiddhg__loader-wrapper {
        background: var(--osiddhg__main_white);
        padding: 20px 30px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        font-size: 16px;
        color: var(--osiddhg__pastel_dark);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        max-width: 300px;
        text-align: center;
    }

    .osiddhg__spinner {
        width: 24px;
        height: 24px;
        border: 3px solid var(--osiddhg__pastel_dark);
        border-top: 3px solid var(--osiddhg__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }








#osiddhg__header {
  font-family: var(--osiddhg__font_family);
  background-color: var(--osiddhg__main_white);
  color: var(--osiddhg__dark_color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--osiddhg__main_border_color);
}

/* Top info bar styling */
#osiddhg__header > div.bg-white {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.75rem, 1vw, 1.25rem) 2vw;
}

#osiddhg__header .bg-white span {
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  color: var(--osiddhg__grey);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

/* SVG icons inside info bar */
#osiddhg__header svg {
  vertical-align: middle;
  fill: currentColor;
  width: clamp(1em, 1.2vw, 1.5em);
  height: auto;
  transition: transform 0.2s;
}
#osiddhg__header svg:hover {
  transform: scale(1.1);
}

/* Navigation bar styling */
#osiddhg__header nav {
  background-color: transparent;
  padding: clamp(0.75rem, 1vw, 1.25rem) 2vw;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(10px);
}

#osiddhg__header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Brand styling */
#osiddhg__header .navbar-brand {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--osiddhg__dark_color);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
  transition: background-color 0.3s, color 0.3s;
}
#osiddhg__header .navbar-brand:hover {
  background-color: rgba(148, 172, 2, 0.1);
  color: var(--osiddhg__dark_accent);
}

/* Toggle button styling */
#osiddhg__header .navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.5em;
  border-radius: 50%;
  transition: background-color 0.2s;
}
#osiddhg__header .navbar-toggler:hover {
  background-color: rgba(148, 172, 2, 0.1);
}
#osiddhg__header .navbar-toggler span {
  background-color: var(--osiddhg__grey);
  width: clamp(1.2em, 2vw, 1.5em);
  height: 2px;
  display: block;
  margin: 0.3em 0;
  border-radius: 1px;
}

/* Collapsible menu styling */
#osiddhg__header .collapse.navbar-collapse {
  width: 100%;
  margin-top: clamp(0.75rem, 1vw, 1.25rem);
}
#osiddhg__header ul.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: flex-end;
}
#osiddhg__header .nav-item {
  display: flex;
}
#osiddhg__header .nav-link {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--osiddhg__dark_color);
  text-decoration: none;
  padding: clamp(0.5rem, 1vw, 0.75rem) 1em;
  border-radius: 0.5em;
  transition: background-color 0.3s, color 0.3s;
}
#osiddhg__header .nav-link:hover,
#osiddhg__header .nav-link:focus {
  background-color: rgba(148, 172, 2, 0.1);
  color: var(--osiddhg__dark_accent);
}

/* Call-to-action button styling */
#osiddhg__header a.btn {
  font-family: var(--osiddhg__font_family);
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  background-color: var(--osiddhg__dark_accent) !important;
  color: var(--osiddhg__main_white) !important;
  padding: clamp(0.75rem, 1vw, 1rem) 2em;
  border-radius: 2em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: background-color 0.3s, transform 0.2s;
}
#osiddhg__header a.btn:hover {
  background-color: var(--osiddhg__main_color) !important;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #osiddhg__header > div.bg-white {
    flex-direction: column;
    align-items: flex-start;
  }
  #osiddhg__header nav {
    padding: clamp(0.75rem, 1vw, 1.25rem) 4vw;
  }
  #osiddhg__header ul.navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #osiddhg__header a.btn {
    width: 100%;
    text-align: center;
    padding: clamp(0.75rem, 1vw, 1rem) 0;
  }
}
#contacts {
  background-color: #e9ddf4 !important; /* pastel white background for elegance */
  font-family: var(--osiddhg__font_family);
  position: relative;
  overflow: hidden;
}

/* Container padding and spacing */
#contacts .container {
  padding: clamp(1.5rem, 2vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2.5rem);
}

/* Row layout: switch to column on small screens for responsiveness */
#contacts .row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: stretch;
}

/* Image styling with layered shadow and rounded corners for depth */
#contacts .osiddhg__image {
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#contacts .osiddhg__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text column styling: elegant background with subtle backdrop filter for layering */
#contacts > .container > .row > .col-lg-7 {
  background-color: #f1f0f3;
  border-radius: 1rem;
  padding: clamp(1.5rem, 2vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Heading styling: large, serif font with baby purple accent for emphasis */
#contacts h2 {
  font-family: serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #82669e !important; /* baby purple for elegance */
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* Paragraph styling: readable, slightly softer color for clarity */
#contacts p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #28242d !important; /* dark text for contrast */
  font-family: var(--osiddhg__font_family);
  max-width: 700px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  #contacts .row {
    flex-direction: column;
  }
  #contacts .col-lg-5, #contacts .col-lg-7 {
    width: 100%;
  }
  #contacts .osiddhg__image {
    height: auto;
  }
}
#osiddhg__footer {
  background-color: var(--osiddhg__dark_color) !important;
  font-family: inherit;
  color: var(--osiddhg__main_white);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

#osiddhg__footer .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 2.5rem);
  padding: clamp(1rem, 2vw, 2rem);
}

#osiddhg__footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: flex-start;
}

#osiddhg__footer .col-xl-4, #osiddhg__footer .col-md {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#osiddhg__footer a {
  color: var(--osiddhg__pastel_white);
  text-decoration: none;
  font-family: var(--osiddhg__font_family);
  font-weight: normal;
  transition: color 0.3s ease, transform 0.3s ease;
}

#osiddhg__footer a:hover {
  color: var(--osiddhg__light_accent);
  transform: translateY(-2px);
}

#osiddhg__footer h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--osiddhg__pastel_white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--osiddhg__light_accent);
  padding-bottom: 0.5rem;
}

#osiddhg__footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#osiddhg__footer .nav-item {
  display: block;
}

#osiddhg__footer ._osiddhg__menu-item {
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background-color: transparent;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: var(--osiddhg__font_family);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
}

#osiddhg__footer ._osiddhg__menu-item:hover {
  background-color: rgba(148, 172, 2, 0.1);
  color: var(--osiddhg__light_accent);
  transform: translateY(-2px);
}

#osiddhg__footer h2 + p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 400px;
}

#osiddhg__footer form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

#osiddhg__footer .input-group {
  display: flex;
  align-items: center;
  background-color: var(--osiddhg__pastel_white);
  padding: 0.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
}

#osiddhg__footer .form-control {
  flex: 1 1 auto;
  border: none;
  outline: none;
  font-family: var(--osiddhg__font_family);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  background: transparent;
  color: var(--osiddhg__dark_color);
}

#osiddhg__footer .btn {
  background-color: var(--osiddhg__light_accent);
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#osiddhg__footer .btn:hover {
  background-color: var(--osiddhg__main_color);
  transform: translateY(-1px);
}

#osiddhg__footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 1.5rem 0;
}

#osiddhg__footer .row.align-items-center {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
}

#osiddhg__footer p {
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  #osiddhg__footer .row {
    flex-direction: column;
    align-items: flex-start;
  }
  #osiddhg__footer .col-xl-4, #osiddhg__footer .col-md {
    width: 100%;
  }
  #osiddhg__footer .input-group {
    flex-direction: column;
  }
  #osiddhg__footer .btn {
    width: 100%;
  }
}
#features {
  font-family: var(--osiddhg__font_family);
  background-color: var(--osiddhg__main_white) !important;
  color: var(--osiddhg__dark_color) !important;
  padding: clamp(1.5rem, 2vw, 3rem) 0;
}

#features .container {
  padding: clamp(1rem, 1.5vw, 2rem);
}

#features > .bg-light {
  background-color: rgba(227, 210, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: clamp(0.75rem, 1.5vw, 2rem);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: clamp(1rem, 1.5vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 4rem);
}

#features h1.display-4 {
  font-family: var(--osiddhg__font_family);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  color: var(--osiddhg__dark_color);
  text-align: center;
  margin-top: clamp(2rem, 3vw, 4rem);
  margin-bottom: clamp(1.5rem, 2vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-transform: capitalize;
}

#features .row {
  gap: clamp(1rem, 2vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(15rem, 20%, 25rem), 1fr));
}

#features .card {
  background-color: var(--osiddhg__main_white);
  border: none;
  border-radius: clamp(0.75rem, 1.5vw, 1.5rem);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: clamp(1rem, 1.5vw, 1.5rem);
  transition: transform 0.3s, box-shadow 0.3s;
}

#features .card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

#features .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.5rem, 1vw, 1rem);
}

#features h4 {
  font-family: var(--osiddhg__font_family);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  color: var(--osiddhg__dark_color);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
  transition: border-color 0.3s;
}

#features h4:hover {
  border-color: var(--osiddhg__main_color);
}

#features p {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--osiddhg__grey);
  margin: 0;
}

#features h1.text-primary {
  color: var(--osiddhg__main_color) !important;
  font-family: var(--osiddhg__font_family);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 4.5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  margin-top: clamp(2rem, 3vw, 4rem);
  margin-bottom: clamp(1.5rem, 2vw, 2.5rem);
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-transform: capitalize;
}

@media (max-width: 768px) {
  #features .row {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
  }
  #features h1.display-4 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  #features .card {
    width: 100%;
  }
}
#contacts-form {
  font-family: var(--osiddhg__font_family);
  color: var(--osiddhg__main_dark);
  background-color: transparent;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

#contacts-form .container {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#contacts-form .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(1rem, 2vw, 2rem);
}

#contacts-form .col-lg-6 {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

#contacts-form .col-lg-5 {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

#contacts-form .osiddhgcf-form-wrapper {
  width: 100%;
}

#contacts-form .osiddhgcf-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background-color: transparent;
}

#contacts-form .osiddhgcf-form-wrapper input,
#contacts-form .osiddhgcf-form-wrapper textarea,
#contacts-form .osiddhgcf-form-wrapper select {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  padding: 0.75rem 1rem;
  border: 1px solid var(--osiddhg__main_border_color);
  background-color: var(--osiddhg__pastel_white);
  color: var(--osiddhg__main_dark);
  border-radius: 1rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}

#contacts-form .osiddhgcf-form-wrapper input:focus,
#contacts-form .osiddhgcf-form-wrapper textarea:focus,
#contacts-form .osiddhgcf-form-wrapper select:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--osiddhg__light_color);
  border-color: var(--osiddhg__light_color);
}

#contacts-form .osiddhg__primary-button {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  background-color: transparent;
  border: 2px solid var(--osiddhg__main_color);
  color: var(--osiddhg__main_color);
  border-radius: 2rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

#contacts-form .osiddhg__primary-button:hover {
  background-color: var(--osiddhg__main_color);
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

#contacts-form .form-check {
  display: flex;
  align-items: center;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

#contacts-form .form-check-input {
  margin-right: 0.75rem;
  accent-color: var(--osiddhg__main_color);
}

#contacts-form h2 {
  font-family: var(--osiddhg__font_family);
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--osiddhg__main_dark);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.5rem;
}

#contacts-form h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background-color: var(--osiddhg__main_color);
  margin-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1px;
}

#contacts-form p {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.5;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

#contacts-form p.text-secondary {
  color: #6c757d !important;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

#contacts-form .mb-4 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

#contacts-form svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: var(--osiddhg__dark_color);
  transition: fill 0.3s;
}

#contacts-form svg:hover {
  fill: var(--osiddhg__main_color);
}

#contacts-form .osiddhg__image-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  #contacts-form .row {
    
  }
  #contacts-form .col-lg-6,
  #contacts-form .col-lg-5 {
    flex: 1 1 100%;
  }
  #contacts-form .osiddhg__primary-button {
    align-self: stretch;
    text-align: center;
  }
  #contacts-form .mb-4 {
    flex-direction: column;
    align-items: flex-start;
  }
}
#about {
  font-family: var(--osiddhg__font_family);
  color: var(--osiddhg__dark_color) !important;
  background-color: var(--osiddhg__main_white) !important;
  padding-top: clamp(1.5rem, 2vw, 3rem);
  padding-bottom: clamp(1.5rem, 2vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  position: relative;
  overflow: hidden;
}

#about .container {
  width: 100%;
  max-width: 1200px;
  padding-left: clamp(1rem, 2vw, 2rem);
  padding-right: clamp(1rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 3rem);
}

#about .row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(1rem, 2vw, 2rem);
}

#about .row > div {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

#about .bg-light {
  background-color: var(--osiddhg__pastel_white) !important;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: clamp(0.75rem, 1.5vw, 2rem);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#about .bg-light:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

#about h2 {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--osiddhg__dark_color);
  text-transform: uppercase;
  border-bottom: 2px solid var(--osiddhg__main_color);
  display: inline-block;
  padding-bottom: 0.25em;
}

#about h3 {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--osiddhg__dark_color);
  max-width: 90%;
  word-break: break-word;
  border-left: 4px solid var(--osiddhg__main_color);
  padding-left: 0.75em;
}

#about p {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--osiddhg__grey);
  max-width: 90%;
}

#about .osiddhg__primary-button {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background-color: var(--osiddhg__main_color) !important;
  color: #fff !important;
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 2vw, 1.25rem);
  border: none;
  border-radius: clamp(0.5rem, 1vw, 1.25rem);
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#about .osiddhg__primary-button:hover {
  background-color: #7ba002 !important; /* Slightly darker for hover */
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #about .row {
    flex-direction: column;
    align-items: center;
  }
  #about .bg-light {
    width: 100%;
  }
  #about h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  #about p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
  #about .osiddhg__primary-button {
    width: 100%;
    text-align: center;
  }
}
#advantages {
  font-family: var(--osiddhg__font_family);
  background-color: var(--osiddhg__pastel_white);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

#advantages .container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  padding: 0 1rem;
}

#advantages .row {
  display: contents;
}

#advantages .align-items-end {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
}

#advantages .col-lg-7 {
  grid-column: span 7 / span 7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}

#advantages .col-lg-5 {
  grid-column: span 5 / span 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

#advantages h2 {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--osiddhg__dark_color);
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem 0;
  text-align: left;
  text-wrap: balance;
  background: linear-gradient(135deg, transparent 70%, var(--osiddhg__light_accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#advantages .osiddhg__primary-button {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 0.75em;
  background-color: var(--osiddhg__dark_accent);
  color: var(--osiddhg__main_white);
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#advantages .osiddhg__primary-button:hover {
  background-color: var(--osiddhg__main_color) !important;
  transform: translateY(-2px);
}

#advantages p.lead {
  font-family: var(--osiddhg__font_family);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--osiddhg__dark_color);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
  max-width: 700px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #advantages .align-items-end {
    flex-direction: column;
    align-items: stretch;
  }
  #advantages .col-lg-7, #advantages .col-lg-5 {
    grid-column: span 12 / span 12;
    align-items: center;
  }
  #advantages h2 {
    text-align: center;
  }
  #advantages .osiddhg__primary-button {
    align-self: center;
  }
  #advantages p.lead {
    max-width: 90%;
  }
}
#products {
  --section-bg-color: rgba(255, 255, 255, 0.05);
  --heading-color: #a781cb;
  --primary-text-color: #f1f0f3;
  --button-bg: #a781cb;
  --button-hover-bg: #82669e;
  --card-bg: rgba(255, 255, 255, 0.1);
  --card-border: #e4d4f4;
  --card-shadow: rgba(0, 0, 0, 0.2);
  font-family: 'Work Sans', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  background-color: var(--section-bg-color);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}
#products .container {
  max-width: 1200px;
  width: 100%;
}
#products h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.05em;
  color: var(--heading-color);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  text-transform: uppercase;
  border-bottom: 2px solid var(--heading-color);
  display: inline-block;
  padding-bottom: 0.25em;
}
#products h3 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--heading-color);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
#products p {
  font-family: 'Work Sans', serif;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

#products .row-cols-1 {
  grid-template-columns: 1fr;
}
#products .row-cols-md-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#products .row-cols-lg-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
#products .row-cols-xl-4 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
#products [id^="products_item-"] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
#products [id^="products_item-"] div {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
#products [id^="products_item-"] div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}
#products h4 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--heading-color);
  margin-bottom: 0.75em;
  line-height: 1.2;
}
#products p.small {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  margin-bottom: 1rem;
}
#products a.osiddhg__primary-button {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) 1.5rem;
  background-color: var(--button-bg);
  color: var(--osiddhg__main_white);
  border-radius: 2rem;
  font-family: 'Work Sans', serif;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
}
#products a.osiddhg__primary-button:hover {
  background-color: var(--button-hover-bg);
  transform: translateY(-2px);
}
#products .osiddhg__short-button {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(0.75rem, 2vw, 1rem) 2.5rem;
  background-color: transparent;
  border: 2px solid var(--heading-color);
  border-radius: 2rem;
  color: var(--heading-color);
  font-family: 'Work Sans', serif;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#products .osiddhg__short-button:hover {
  background-color: var(--heading-color);
  color: var(--osiddhg__main_white);
}
@media (max-width: 768px) {
  #products .row {
    grid-template-columns: 1fr;
  }
  #products h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
  }
  #products p {
    font-size: clamp(0.8rem, 2.2vw, 1rem);
  }
  #products a.osiddhg__short-button {
    width: 100%;
    text-align: center;
  }
}
#hero {
    background-color: var(--osiddhg__pastel_white) !important;
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  #hero .container {
    max-width: 1200px;
    width: 100%;
  }

  #hero .row {
    display: grid;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
  }

  #hero .row.pt-5 {
    margin-top: 3rem;
  }

  #hero .col-lg-8,
  #hero .col-xl-6,
  #hero .col-md-8 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  #hero h1 {
    font-family: var(--osiddhg__font_family);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--osiddhg__dark_color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  #hero h1 .text-break {
    word-break: break-word;
  }

  #hero p {
    font-family: var(--osiddhg__font_family);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
  }

  #hero .osiddhg__primary-button {
    display: inline-block;
    font-family: var(--osiddhg__font_family);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 0.75rem;
    background-color: var(--osiddhg__main_color);
    color: var(--osiddhg__main_white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
  }

  #hero .osiddhg__primary-button:hover {
    background-color: var(--osiddhg__dark_accent);
    transform: translateY(-2px);
  }

  #hero .row:nth-child(2) {
    padding-bottom: 88px;
  }

  #hero .col-md-8 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }

  #hero .osiddhg__image {
    border-radius: 0.5rem;
    min-height: 450px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s, transform 0.3s;
  }

  #hero .osiddhg__image:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: scale(1.02);
  }

  @media (max-width: 768px) {
    #hero {
      padding: clamp(1.5rem, 4vw, 3rem);
    }
    #hero .row {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    #hero .col-lg-8,
    #hero .col-xl-6,
    #hero .col-md-8 {
      align-items: center;
      text-align: center;
    }
    #hero h1 {
      font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    #hero p {
      font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    }
    #hero .osiddhg__image {
      aspect-ratio: auto;
      min-height: auto;
    }
  }
