.page-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.page-slide {
  min-width: 100%;
  text-align: center;
}

/* Optional: Style for navigation arrows */
.page-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background-color: black;
  border: none;
  padding: 10px;
  z-index: 2;
  width: 35px;
}

.page-prev {
  left: 0;
}

.page-next {
  right: 0;
}

.page-dot-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.page-dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.page-dot.active {
  background-color: #717171;
}

/* Page QA Acordion */
.page-accordion {
  width: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-question {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #272829;
  text-align: left;
}

.page-answer {
  padding: 10px;
  display: none;
}

/** Page Accordion */

.accordion {
  .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    button[aria-expanded="true"] {
      border-bottom: 1px solid #03b5d2;
    }
  }
  button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0.5em;
    color: #7288a2;
    /* font-size: 1.15rem;
    font-weight: 400; */
    border: none;
    background: none;
    outline: none;
    &:hover,
    &:focus {
      cursor: pointer;
      color: var(--yellow);
      &::after {
        cursor: pointer;
        color: var(--yellow);
        border: 1px solid var(--yellow);
      }
    }
    .accordion-title {
      padding: 1em 1.5em 1em 0;
    }
    .icon {
      display: inline-block;
      position: absolute;
      top: 10px;
      right: 8px;
      width: 22px;
      height: 22px;
      border: 1px solid;
      border-radius: 22px;
      &::before {
        display: block;
        position: absolute;
        content: "";
        top: 9px;
        left: 5px;
        width: 10px;
        height: 2px;
        background: currentColor;
      }
      &::after {
        display: block;
        position: absolute;
        content: "";
        top: 5px;
        left: 9px;
        width: 2px;
        height: 10px;
        background: currentColor;
      }
    }
  }
  button[aria-expanded="true"] {
    color: var(--yellow);
    .icon {
      &::after {
        width: 0;
      }
    }
    + .accordion-content {
      opacity: 1;
      max-height: 9em;
      transition: all 200ms linear;
      will-change: opacity, max-height;
    }
  }
  .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    p {
      /* font-size: 1rem;
      font-weight: 300; */
      margin: 2em 0.8em !important;
    }
  }
}
