em {
    font-style: italic;
}
.navbar {
  top: 20px;
  left: 64px;
  right: 64px;
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.91);
  transition: all 0.3s ease;
  padding: 12px 0;
  border-radius: 32px 32px 2px 32px;
  isolation: isolate;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
  box-sizing: border-box;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.navbar-links a {
  text-decoration: none;
  font-family: var(--text-small-normal-font-family);
  font-size: var(--text-small-normal-font-size);
  font-weight: var(--text-small-normal-font-weight);
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-links a {
  color: #ffffff;
}

.navbar-links a:hover {
  opacity: 0.7;
}

.navbar-button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  height: 44px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 32px 32px 2px 32px;
  font-family: var(--text-small-normal-font-family);
  font-size: var(--text-small-normal-font-size);
  font-weight: var(--text-small-normal-font-weight);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-button:hover {
  opacity: 0.9;
}

.navbar.scrolled .navbar-button {
  background-color: #ffffff;
  color: #282828;
}

.navbar-button-mobile {
  display: none !important;
  padding: 0 !important;
  border-bottom: none !important;
}

.navbar-button-desktop {
  display: flex;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.menu-toggle {
  all: unset;
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
  background-color: #ffffff;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1192px) {
  .menu-toggle {
    display: flex;
  }

  .navbar:has(.menu-toggle.active) {
    border-radius: 32px 32px 0px 32px;
    box-shadow: none;
    height: 393px;
  }

  .navbar-container:has(.menu-toggle.active) {
    position: absolute;
}

  .navbar {
    left: 16px;
    right: 16px;
  }

  .navbar-container {
    padding: 0 16px;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: rgba(0, 0, 0, 0.91);
    backdrop-filter: none;
    padding: 16px 0;
    border-radius: 0 0 32px 32px;
    list-style: none;
    display: none;
    width: 100%;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links li {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-links li {
    border-bottom: none;
  }

  .navbar-links a {
    display: block;
  }

  .navbar-button-desktop {
    display: none;
  }

  .navbar-button-mobile {
    display: block !important;
    padding: 12px 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-button-mobile button {
    width: 100%;
  }

  .navbar .navbar-links {
    background-color: transparent;
    /* background-color: rgba(0, 0, 0, 0.78); */
    /* backdrop-filter: blur(12px); */
  }

  .navbar.scrolled .navbar-links li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .navbar.scrolled .navbar-links a {
    color: #ffffff;
  }
}

@media (max-width: 768px) {

  .navbar:has(.menu-toggle.active) {
    border-radius: 32px 32px 0px 32px;
    box-shadow: none;
    height: 548px;
  }

  .navbar-logo {
    padding-top: 5px;
    padding-left: 10px;
  }

  .navbar-logo img {
    height: 30px;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.partner-logo {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.partner-logo img {
  max-width: 80px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover img {
  opacity: 1;
}

/* .partner-logo.active {
  background-color: rgba(0, 0, 0, 0.05);
} */

.partner-logo.active img {
  opacity: 1;
  filter: grayscale(0%);
}

.desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .header {
  height: 900px;
  background: url(/assets/images/hero/hero-background-image-min.webp) no-repeat
    50% 50% / cover;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .background {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 33.33px;
  position: relative;
}

.desktop .container {
  width: 1280px;
  align-items: center;
  gap: 20px;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  position: relative;
}

.desktop .column {
  display: flex;
  flex-direction: column;
  max-width: 768px;
  align-items: center;
  gap: 64px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  margin-left: -112.00px;
  margin-right: -112.00px;
}

.desktop .medium-length-hero {
  position: relative;
  width: 992px;
  margin-top: -1.00px;
  font-family: "Unna", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 72px;
  text-align: center;
  line-height: 72px;
}

.desktop .text-wrapper {
  letter-spacing: -0.52px;
}

.desktop .span {
  font-style: italic;
  letter-spacing: -0.52px;
}

.desktop .hero-subtitle {
  position: relative;
  align-self: stretch;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #ffffff;
  font-size: var(--text-regular-normal-font-size);
  text-align: center;
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .actions {
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 auto;
  display: inline-flex;
  position: relative;
}

.desktop .button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 190px;
  height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  position: relative;
  background-color: #ffffff;
  border-radius: 32px 32px 0px 32px;
  cursor: pointer;
}

.desktop .div {
  position: relative;
  width: fit-content;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

.desktop .button-wrapper {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 192px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  position: relative;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  margin-right: -1.00px;
  border-radius: 32px;
  border: 1px solid;
  border-color: #ffffff80;
  cursor: pointer;
}

.desktop .button-2 {
  position: relative;
  width: fit-content;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #ffffff;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

.desktop .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.desktop .container-2 {
  align-items: center;
  gap: 24px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  position: relative;
}

.desktop .frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .heading {
  width: fit-content;
  font-family: var(--heading-tagline-font-family);
  font-weight: var(--heading-tagline-font-weight);
  color: #babfc8;
  font-size: var(--heading-tagline-font-size);
  text-align: center;
  letter-spacing: var(--heading-tagline-letter-spacing);
  line-height: var(--heading-tagline-line-height);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-tagline-font-style);
}

.desktop .img {
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 112px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.desktop .component-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  position: relative;
}

.desktop .component {
  align-items: center;
  gap: 80px;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .content-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .content-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 56px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .tagline-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.desktop .tagline {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--heading-tagline-font-family);
  font-weight: var(--heading-tagline-font-weight);
  color: #babfc8;
  font-size: var(--heading-tagline-font-size);
  letter-spacing: var(--heading-tagline-letter-spacing);
  line-height: var(--heading-tagline-line-height);
  white-space: nowrap;
  font-style: var(--heading-tagline-font-style);
}

.desktop .content-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .heading-2 {
  align-self: stretch;
  font-family: var(--heading-h2-font-family);
  font-weight: var(--heading-h2-font-weight);
  color: #000000;
  font-size: var(--heading-h2-font-size);
  line-height: var(--heading-h2-line-height);
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-h2-font-style);
  letter-spacing: var(--heading-h2-letter-spacing);
}

/* .desktop .text-wrapper-2 {
  letter-spacing: var(--heading-h2-letter-spacing);
  font-family: var(--heading-h2-font-family);
  font-style: var(--heading-h2-font-style);
  font-weight: var(--heading-h2-font-weight);
  line-height: var(--heading-h2-line-height);
  font-size: var(--heading-h2-font-size);
} */

italic {
  font-style: italic !important;
}

.desktop .text {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 75.4px;
}

.desktop .list-item-wrapper {
  display: flex;
  flex-direction: column;
  /* removed height: 188px to allow content to flow naturally */
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .list-item {
  display: flex;
  flex-direction: column;
  width: 600px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .subheading-one {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--heading-h4-font-family);
  font-weight: var(--heading-h4-font-weight);
  color: #000000;
  font-size: var(--heading-h4-font-size);
  letter-spacing: var(--heading-h4-letter-spacing);
  line-height: var(--heading-h4-line-height);
  font-style: var(--heading-h4-font-style);
}

.desktop .p {
  position: relative;
  align-self: stretch;
  margin-bottom: -26.00px;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .placeholder-image-1 {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 96px 0px 96px 0px;
  object-fit: cover;
  background-position: 50% 50%;
}

.desktop .placeholder-image-2 {
  position: relative;
  height: 600px;
  width: 600px;
  border-radius: 96px;
  object-fit: cover;
  background-position: 50% 50%;
}

.desktop .placeholder-image-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 270px;
  object-fit: cover;
}


.desktop .layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.desktop .div-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  padding: 112px 64px;
  flex: 0 0 auto;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .content-wrapper {
  align-items: flex-start;
  gap: 80px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  position: relative;
}

.desktop .content-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .content-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .text-2 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .actions-2 {
  height: 56px;
  align-items: center;
  gap: 24px;
  background-color: #000000;
  border-radius: 32px 32px 0px 32px;
  display: inline-flex;
  position: relative;
}

.desktop .button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  border-radius: 24px 24px 0px 24px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.desktop .text-3 {
  position: relative;
  align-self: stretch;
  font-family: "Lato", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 18px;
}

.desktop .text-wrapper-3 {
  line-height: 30.6px;
}

.desktop .text-wrapper-4 {
  line-height: var(--text-regular-normal-line-height);
  font-family: var(--text-regular-normal-font-family);
  font-style: var(--text-regular-normal-font-style);
  font-weight: var(--text-regular-normal-font-weight);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  font-size: var(--text-regular-normal-font-size);
}

.desktop .text-wrapper-5 {
  line-height: var(--text-regular-normal-line-height);
  text-decoration: underline;
  font-family: var(--text-regular-normal-font-family);
  font-style: var(--text-regular-normal-font-style);
  font-weight: var(--text-regular-normal-font-weight);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  font-size: var(--text-regular-normal-font-size);
}

.desktop .container-3 {
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  position: relative;
}

.desktop .component-2 {
  height: 470px;
  align-items: flex-start;
  gap: 80px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .content-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .text-4 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-medium-normal-font-family);
  font-weight: var(--text-medium-normal-font-weight);
  color: #000000;
  font-size: var(--text-medium-normal-font-size);
  letter-spacing: var(--text-medium-normal-letter-spacing);
  line-height: var(--text-medium-normal-line-height);
  font-style: var(--text-medium-normal-font-style);
}

.desktop .list-item-2 {
  display: flex;
  flex-direction: column;
  width: 600px;
  height: 164px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-right: -2.00px;
}

.desktop .content-8 {
  position: relative;
  flex: 0 0 auto;
  height: 582px;
  margin-bottom: -112.00px;
}

.desktop .blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 112px 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #000000;
}

.desktop .title {
  display: flex;
  align-items: flex-end;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .section-title {
  max-width: 768px;
  gap: 16px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .logo .section-title {
  color: #BABFC8;
}

.desktop .tagline-wrapper-2 {
  display: inline-flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.desktop .content-9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .heading-3 {
  align-self: stretch;
  font-family: var(--heading-h2-font-family);
  font-weight: var(--heading-h2-font-weight);
  color: #ffffff;
  font-size: var(--heading-h2-font-size);
  line-height: var(--heading-h2-line-height);
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-h2-font-style);
  letter-spacing: var(--heading-h2-letter-spacing);
}

.desktop .text-5 {
  position: relative;
  align-self: stretch;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #ffffff;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .div-wrapper-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .row {
  gap: 32px;
  align-items: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}

.desktop .card {
  margin-left: -1.00px;
  border-radius: 80px 80px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  background-color: #252525;
  overflow: hidden;
  border: 1px solid;
  border-color: #00000026;
}

.desktop .content-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .content-10.h-100 {
  height: 100%;
}

.desktop .heading-4 {
  align-self: stretch;
  font-family: var(--heading-h5-font-family);
  font-weight: var(--heading-h5-font-weight);
  color: #ffffff;
  font-size: var(--heading-h5-font-size);
  letter-spacing: var(--heading-h5-letter-spacing);
  line-height: var(--heading-h5-line-height);
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-h5-font-style);
}

.desktop .button-5 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 12px;
  margin-top: auto;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
}

.card-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.desktop .chevron-right {
  position: relative;
  width: 24px;
  height: 24px;
}

.desktop .info {
  top: 230px;
  display: inline-flex;
  height: 24px;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 16px;
}

.desktop .tag {
  border-radius: 3px;
  display: inline-flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.desktop .text-6 {
  position: relative;
  width: fit-content;
  margin-top: -5.00px;
  margin-bottom: -3.00px;
  font-family: var(--text-small-semi-bold-font-family);
  font-weight: var(--text-small-semi-bold-font-weight);
  color: #000000;
  font-size: var(--text-small-semi-bold-font-size);
  letter-spacing: var(--text-small-semi-bold-letter-spacing);
  line-height: var(--text-small-semi-bold-line-height);
  white-space: nowrap;
  font-style: var(--text-small-semi-bold-font-style);
}

.desktop .card-2 {
  border-radius: 80px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  background-color: #252525;
  overflow: hidden;
  border: 1px solid;
  border-color: #00000026;
}

.desktop .content-11 {
  display: flex;
  flex-direction: column;
  width: 368px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -10.67px;
}

.desktop .card-3 {
  margin-right: -1.00px;
  border-radius: 16px 80px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 1;
  flex-grow: 1;
  margin-top: -1.00px;
  margin-bottom: -1.00px;
  background-color: #252525;
  overflow: hidden;
  border: 1px solid;
  border-color: #00000026;
}

.desktop .tag-wrapper {
  top: -40px;
  display: inline-flex;
  height: 24px;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 16px;
}

.desktop .tag-2 {
  border-radius: 4px;
  display: inline-flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
}

.desktop .section-title-2 {
  max-width: 768px;
  gap: 24px;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .heading-5 {
  width: 560px;
  font-family: var(--heading-h2-font-family);
  font-weight: var(--heading-h2-font-weight);
  color: #000000;
  font-size: var(--heading-h2-font-size);
  line-height: var(--heading-h2-line-height);
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-h2-font-style);
  letter-spacing: var(--heading-h2-letter-spacing);
}

.desktop .text-7 {
  position: relative;
  width: 560px;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  justify-content: center;
}

/* ========== TESTIMONIALS CAROUSEL STYLES ========== */
.desktop .testimonials-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  position: relative;
}

.desktop .carousel-container {
  width: 100%;
  overflow: hidden;
  /* Allow cards to be seen overflowing if needed, but usually hidden for carousel */
}

.desktop .frame-3 {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
  width: 100%;
}

.desktop .testimonial-card {
  flex: 0 0 450px; /* Fixed width for cards */
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  /* min-height: 300px; */
  box-sizing: border-box;
}

.desktop .testimonial-card .partner-logo-small {
  height: 40px;
  width: auto;
  object-fit: contain;
  order: 2;
  align-self: flex-end;
  margin-top: -50px;
}

.desktop .testimonial-card .content-4 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 300px;
  gap: 32px;
  order: 1;
}

.desktop .testimonial-card .quote {
  font-family: var(--text-regular-normal-font-family);
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.desktop .testimonial-card .avatar {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}

.desktop .testimonial-card .avatar-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.desktop .testimonial-card .text-8 {
  font-weight: 600;
  font-size: 16px;
  color: #000000;
}

.desktop .testimonial-card .text-9 {
  font-size: 14px;
  color: #666666;
}

/* Controls Styling */
.desktop .carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 16px;
}

.desktop .carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.desktop .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e5e5e5;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.desktop .dot.active {
  background-color: #000000;
}

.desktop .carousel-arrows {
  display: flex;
  gap: 16px;
}


.desktop .carousel-button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.desktop .carousel-button.carousel-prev {
  border-radius: 24px 8px 8px 8px;
}

.desktop .carousel-button.carousel-next {
  border-radius: 8px 24px 8px 8px;
}

.desktop .carousel-button:hover {
  background-color: #f5f5f5;
  border-color: #d0d0d0;
  transform: scale(1.05);
}

.desktop .carousel-button:active {
  transform: scale(0.95);
}

.desktop .carousel-button svg {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop .div-wrapper-3 {
  display: inline-flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 0 0 608px;
  width: 608px;
}

.desktop .column-2 {
  display: flex;
  flex-direction: column;
  width: 608px;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #17171726;
}

.desktop .quote {
  position: relative;
  align-self: stretch;
  /* min-height: 219px; */
  margin-top: -1.00px;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  font-style: var(--text-regular-normal-font-style);
}

.desktop .avatar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.desktop .avatar-content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.desktop .text-8 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-regular-bold-font-family);
  font-weight: var(--text-regular-bold-font-weight);
  color: #000000;
  font-size: var(--text-regular-bold-font-size);
  letter-spacing: var(--text-regular-bold-letter-spacing);
  line-height: var(--text-regular-bold-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-bold-font-style);
}

.desktop .text-9 {
  position: relative;
  width: fit-content;
  opacity: 0.5;
  font-family: var(--text-regular-normal-font-family);
  font-weight: var(--text-regular-normal-font-weight);
  color: #000000;
  font-size: var(--text-regular-normal-font-size);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  line-height: var(--text-regular-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-regular-normal-font-style);
}

.desktop .layer {
  position: relative;
  width: 126px;
  height: 21px;
}

.desktop .frame-4 {
  display: inline-flex;
  height: 366px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 0 0 608px;
  width: 608px;
}

.desktop .column-wrapper {
  display: inline-flex;
  height: 364px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex: 0 0 608px;
  width: 608px;
}

.desktop .column-3 {
  display: flex;
  flex-direction: column;
  width: 608px;
  height: 364px;
  align-items: flex-start;
  gap: 32px;
  padding: 32px;
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #17171726;
}

.desktop .content-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
}

.desktop .content-13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-bottom: -11.00px;
}

.desktop .avatar-2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.desktop .layer-2 {
  position: relative;
  width: 70px;
  height: 68px;
}

.desktop .layer-3 {
  position: relative;
  width: 126px;
  height: 21px;
  margin-top: -7180.00px;
  margin-left: -306px;
}

.desktop .content-14 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .section-title-3 {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.desktop .row-2 {
  flex-direction: column;
  width: 500px;
  gap: 40px;
  padding: 8px 0px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.desktop .contact-info-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .contact-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.desktop .frame-5 {
  display: flex;
  gap: 24px;
  position: relative;
  align-self: stretch;
}

.desktop .img-2 {
  position: relative;
  width: 32px;
  height: 32px;
}

.desktop .heading-6 {
  flex: 1;
  font-family: var(--heading-h5-font-family);
  font-weight: var(--heading-h5-font-weight);
  color: #000000;
  font-size: var(--heading-h5-font-size);
  letter-spacing: var(--heading-h5-letter-spacing);
  line-height: var(--heading-h5-line-height);
  position: relative;
  margin-top: -1.00px;
  font-style: var(--heading-h5-font-style);
}

.desktop .link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .link {
  flex: 1;
  color: transparent;
  font-size: 18px;
  line-height: 18px;
  position: relative;
  margin-top: -1.00px;
  font-family: "Lato", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
}

.desktop .text-wrapper-6 {
  color: #000000;
  line-height: var(--text-regular-normal-line-height);
  text-decoration: underline;
  font-family: var(--text-regular-normal-font-family);
  font-style: var(--text-regular-normal-font-style);
  font-weight: var(--text-regular-normal-font-weight);
  letter-spacing: var(--text-regular-normal-letter-spacing);
  font-size: var(--text-regular-normal-font-size);
}

.desktop .content-15 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.desktop .span-wrapper {
  flex: 1;
  color: #000000;
  font-size: 18px;
  line-height: 18px;
  position: relative;
  margin-top: -1.00px;
  font-family: "Lato", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
}

.desktop .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  position: relative;
  flex: 0 0 auto;
  border-top: 1px solid #f0f0f0;
}

.footer-copyright {
  position: relative;
  width: fit-content;
  font-family: var(--text-small-normal-font-family);
  font-weight: var(--text-small-normal-font-weight);
  color: #666666;
  font-size: var(--text-small-normal-font-size);
  letter-spacing: var(--text-small-normal-letter-spacing);
  line-height: var(--text-small-normal-line-height);
  margin: 0;
  font-style: var(--text-small-normal-font-style);
}

.desktop .credits {
  display: none;
}

.desktop .company-logo-image {
  display: none;
}

.desktop .divider {
  display: none;
}

.desktop .row-3 {
  display: none;
}

.desktop .text-wrapper-7 {
  display: none;
}

.desktop .footer-links {
  display: none;
  margin-bottom: -3.00px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .text-wrapper-8 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--text-small-link-font-family);
  font-weight: var(--text-small-link-font-weight);
  color: #000000;
  font-size: var(--text-small-link-font-size);
  letter-spacing: var(--text-small-link-letter-spacing);
  line-height: var(--text-small-link-line-height);
  text-decoration: underline;
  white-space: nowrap;
  font-style: var(--text-small-link-font-style);
}

.desktop .header-2 {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 32px 0px 40px;
  background-color: transparent;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.desktop .layer-4 {
  position: relative;
  width: 126px;
  height: 43.54px;
}

.desktop .column-4 {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.desktop .link-text {
  width: fit-content;
  color: #ffffff;
  font-size: var(--text-small-normal-font-size);
  line-height: var(--text-small-normal-line-height);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--text-small-normal-font-family);
  font-weight: var(--text-small-normal-font-weight);
  letter-spacing: var(--text-small-normal-letter-spacing);
  font-style: var(--text-small-normal-font-style);
}

.desktop .button-6 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-right: -2.00px;
  background-color: #ffffff;
  border-radius: 32px 32px 0px 32px;
  border: 1px solid;
}

.desktop .text-wrapper-9 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  margin-left: -1.00px;
  font-family: var(--text-small-normal-font-family);
  font-weight: var(--text-small-normal-font-weight);
  color: #000000;
  font-size: var(--text-small-normal-font-size);
  letter-spacing: var(--text-small-normal-letter-spacing);
  line-height: var(--text-small-normal-line-height);
  white-space: nowrap;
  font-style: var(--text-small-normal-font-style);
}

.desktop .brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.desktop .brand-logo img {
  max-width: 100%;
  height: auto;
  opacity: 1;
}

/* Tablet devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 32px;
  }

  .desktop .header {
    height: 700px;
  }

  .desktop .container {
    width: 90%;
    max-width: 90%;
    padding: 0 16px;
    gap: 40px;
  }

  .desktop .column {
    max-width: 100%;
  }

  .desktop .medium-length-hero {
    width: 100%;
    font-size: 48px;
    line-height: 56px;
  }

  .desktop .actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .desktop .button,
  .desktop .button-wrapper {
    width: auto;
  }

  .desktop .logo {
    padding: 60px 32px;
  }

  .desktop .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .desktop .div-wrapper {
    padding: 60px 32px;
    gap: 40px;
  }

  .desktop .content-5 {
    flex-direction: column;
    gap: 40px;
  }

  .desktop .placeholder-image-1,
  .desktop .placeholder-image-2 {
    height: 400px;
    width: 100%;
    border-radius: 84px 0px 84px 0px;
  }

  .desktop .content-wrapper {
    gap: 40px;
  }

  .desktop .content-6 {
    gap: 24px;
  }

  .desktop .list-item {
    width: 100%;
  }

  .desktop .partners-grid {
    width: 100%;
  }

  .desktop .content-7 {
    width: 100%;
    gap: 48px;
  }

  .desktop .content-7 .list-item-2 {
    width: 100%;
  }

  .desktop .component-2 {
    height: auto;
    flex-direction: column;
    gap: 40px;
  }

  .desktop .content-8 {
    height: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .desktop .blog {
    padding: 60px 32px;
  }

  .desktop .container-3 {
    gap: 40px;
  }

  .desktop .div-wrapper-2 {
    gap: 20px;
  }

  .desktop .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .desktop .contact-info-wrapper,
  .desktop .content-15 {
    width: 100%;
  }

  .desktop .row-2 {
    flex-direction: column;
    gap: 30px;
  }

  .desktop .footer {
    padding: 16px 32px 40px;
  }

  .desktop .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Desktop - Catalog cards max width */
@media (min-width: 1025px) {
  #catalogs .card {
    max-width: 404px;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  /* .navbar {
    padding: 16px 0;
  } */

  .navbar-container {
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 12px;
    justify-content: space-between;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    align-items: center;
    gap: 20px;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar.scrolled .navbar-links li {
    border: none !important;
  }

  .navbar-links li {
    border: none !important;
  }

  .navbar-button.navbar-button-desktop {
    display: none;
  }

  /* Hero Section */
  .desktop .header {
    height: auto;
    min-height: 100vh;
    /* Increased top padding to create gap between navbar and hero text */
    padding: 180px 0 60px;
  }

  /* Added background styles to align content to top instead of center on mobile */
  .desktop .background {
    align-items: flex-start;
    height: auto;
    min-height: 100%;
  }

  .desktop .container {
    width: 100%;
    padding: 0 20px;
    gap: 30px;
  }

  .desktop .column {
    gap: 40px;
    align-items: center;
  }

  .desktop .content {
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    align-items: center;
  }

  .desktop .medium-length-hero {
    width: 100%;
    font-size: 42px;
    line-height: 1.2;
    margin-top: 0;
    text-align: center;
  }

  .desktop .hero-subtitle {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .desktop .actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: center;
  }

  .desktop .button,
  .desktop .button-wrapper {
    width: 100%;
    max-width: 300px;
  }

  .desktop .button-2 {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }

  /* Brands Section */
  .desktop .logo {
    padding: 60px 20px;
  }

  .desktop .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .desktop .brand-logo img {
    max-height: 40px;
  }

  /* Story Section */
  .desktop .div-wrapper {
    padding: 40px 20px;
  }

  .desktop .content-5 {
    flex-direction: column-reverse; /* Image on top */
    gap: 32px;
  }

  .desktop .placeholder-image-1 {
    height: 300px;
    width: 100%;
    border-radius: 72px 0px 72px 0px; /* Match the rounded corner style */
    object-fit: cover;
  }

  .desktop .content-2 {
    width: 100%;
  }

  .desktop .heading-2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .desktop .content-14 .heading-2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .desktop .heading-3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .desktop .text-5 {
    font-size: 14px;
    line-height: 1.2;
  }

  /* Services Section */
  .desktop .layout {
    padding: 40px 0;
    gap: 20px;
  }

  .desktop .layout .content-5 {
    flex-direction: column;
  }

  .desktop .placeholder-image-2 {
    height: 300px;
    width: 100%;
    border-radius: 48px;
  }

  /* Catalogs Section */
  .desktop .blog {
    padding: 60px 20px;
  }

  .desktop .tagline {
    font-size: 12px;
  }

  .desktop .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .desktop .card, .desktop .card-2, .desktop .card-3 {
    width: 100%;
  }

  .desktop .heading-4 {
    font-size: 26px;
  }

  /* Fix overflow for heading and subtitle in testimonials section */
  .desktop .heading-5,
  .desktop .text-7 {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .desktop .heading-5 {
    font-size: 28px;
  }
  /* </CHANGE> */

  /* Testimonials Section */
  .desktop .testimonials-carousel-wrapper {
    gap: 32px;
  }

  .desktop .testimonial-card {
    flex: 0 0 100%; /* Full width on mobile */
    min-width: 100%;
    height: 100%;
    padding: 24px;
    gap: 24px;
    min-height: auto;
  }

  .desktop .testimonial-card .partner-logo-small {
    order: 0;
    align-self: auto;
    margin-top: 0;
    margin: 10px 0;
  }

  .desktop .testimonial-card .content-4 {
    order: 1;
  }

  .desktop .testimonial-card .content-4 {
    min-height: 216px;
  }

  .desktop .quote {
    font-size: 14px;
  }

  .desktop .carousel-controls {
    flex-direction: row; /* Keep side by side */
    justify-content: space-between;
    align-items: center;
  }

  /* Partners Section */
  .desktop .container-wrapper {
    padding: 40px 20px;
  }

  .desktop .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* Ensure the grid takes full width to center the content properly */
    width: 100%;
  }

  .desktop .component-2 {
    flex-direction: column;
    gap: 40px;
  }

  .desktop .content-7 {
    width: 100%;
    gap: 32px;
  }

  .desktop .list-item-2 {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-right: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    display: none;
  }

  .partner-logo-description {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px;
    text-align: center;
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
  }

  .partner-logo-description.active {
    display: flex;
  }

  .partner-logo-description .partner-name {
    font-family: var(--heading-h4-font-family);
    font-weight: var(--heading-h4-font-weight);
    color: #000000;
    font-size: 18px;
    font-style: var(--heading-h4-font-style);
  }

  .partner-logo-description .partner-desc {
    font-family: var(--text-regular-normal-font-family);
    font-weight: var(--text-regular-normal-font-weight);
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Contact Section */
  /* Force content-14 to column layout on mobile */
  .desktop .content-14 {
    flex-direction: column;
  }

  .desktop .row-2 {
    width: 100%;
    gap: 32px;
  }

  .desktop .contact-info-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .desktop .link-wrapper {
    padding: 0;
    justify-content: flex-start;
  }

  .desktop .link, .desktop .span-wrapper {
    font-size: 16px;
  }
}

/* Small Mobile devices */
/* @media (max-width: 480px) {
  .desktop .medium-length-hero {
    font-size: 36px;
  }

  .desktop .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */
