.faq_module__container {
  align-items: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}

.faq_module__container p {
  max-width: 700px;
  margin: auto;
  text-align: left;
  margin-bottom: 0;
}

.faq_module__container h2 {
  text-align: center;
}

.faq_module__container p:not(:last-child) {
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .faq_module__container p {
    max-width: 500px;
  }
}

.bg-image_right, .bg-image_left {
  position: absolute;
  z-index: -1;
  max-width: 438px;
}

.bg-image_right {
  right: 0%;
  bottom: 89px;
}

.bg-image_left {
  left: 0;
  bottom: 89px;
}

@media (max-width: 991px) {
  .bg-image_right {
    position: relative;
    z-index: -1;
    right: 0;
    bottom: 0;
  }
  .bg-image_left {
    display: none;
  }
  .faq_module__container {
    padding: 0 24px;
  }
}

.faq_module--items {
  display: flex;
  margin: auto;
  gap: 24px;
  flex-flow: column;
  justify-content: center;
}

.faq_module-header svg {
  transform: rotate(180deg);
  width: 24px;
  min-width: 24px;
  margin-left: 16px;
}

.faq_module-header.active svg {
  transform: rotate(0deg);
}
  
.faq_module {
    align-self: stretch;
    border-radius: 20px;
    box-shadow: 8px 13px 30px 0px rgba(47, 77, 82, 0.1);
    background-color: var(--secondary-white-100, #fff);
    display: flex;
    max-width: 800px;
    flex-direction: column;
    color: var(--primary-forest-100, #2f4d52);
    padding: 24px 32px;
  }

.faq_module.visible {
  display: flex;
}

.faq_module {
  display: none;
}

.faq_module a {
  text-decoration: underline;
  color: #2F4D52;
  transition: all 160ms;
  font-size: 16px;
}

.faq_module a:hover {
  opacity: 0.8;
}

  .faq_module-header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 28pxw
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.56px;
    line-height: 107%;
    border: 0;
    padding: 0;
    background: none;
  }

  .faq_module-header:hover, .faq_module-header:focus {
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: none;
    justify-content: space-between;
    font-size: 28pxw
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.56px;
    line-height: 107%;
    border: 0;
    padding: 0;
    background: none;
  }

  .faq__button-group {
    margin-top: 48px;
  }

  .faq_module-header:hover {
    cursor: pointer;
  }

  .faq_module-title {
    font-family: 'UniformRndExCond-Bold',sans-serif;
    font-size: 28px;
    font-style: normal;
    margin: 0;
    text-align: left;
    font-weight: 700;
    line-height: 30px; /* 107.143% */
    letter-spacing: -0.56px;
    text-transform: uppercase;
  }

  @media (max-width: 991px) {
    .faq_module-title {
      max-width: 100%;
    }
  }

  .faq_module-icon {
    aspect-ratio: 1;
    object-fit: auto;
    object-position: center;
    width: 48px;
  }

  .faq_module-description {
    margin-top: 0;
  }

  @media (max-width: 991px) {
    .faq_module-description {
      max-width: 100%;
    }
    .faq__button-group {
      margin-top: 32px;
    }
  }

.faq_module-description {
    max-height: 0;
    overflow: hidden;
    transform: translateY(16px);
    transition: max-height 0.3s ease; /* Adjust the duration and timing function as needed */
}

.faq_module-header.active + .faq_module-description {
    max-height: 100%; /* Adjust the value as needed */
    margin-bottom: 16px;
}