.wee-faq-section,
.wee-faq-section * {
  box-sizing: border-box;
}

.wee-faq-section {
  position: relative;
  background: #ffffff;
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  z-index: 1;
}

.wee-faq-container {
  width: 85%;
  margin-left: 7.5%;
  margin-right: 7.5%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 100px;
  position: relative;
}

.wee-faq-left {
  width: 31%;
  flex: 0 0 31%;
  position: relative;
  min-height: 700px;
  z-index: 2;
}

.wee-faq-left-pin {
  width: 100%;
  height: 700px;
  position: absolute;
  top: 0;
  left: 0;
  will-change: top, left, width;
}

.wee-faq-image-wrap {
  width: 100%;
  height: 700px;
  border-radius: 25px;
  overflow: hidden;
  background: #f4f4f4;
}

.wee-faq-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wee-faq-right {
  width: calc(69% - 100px);
  flex: 1;
  position: relative;
  z-index: 1;
}

.wee-faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.wee-faq-item {
  width: 100%;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: solid 1px transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

button.wee-faq-question:hover {
    background: #02193d !important;
}

.wee-faq-item.active button.wee-faq-question {
    background: #02193d !important;
}

button.wee-faq-question {
    width: 100%;
    outline: none !important;
    border: none;
    background: #F6F6F6 !important;
    color: black;
    font-family: 'Plus Jakarta Sans';
    font-size: 20px;
    font-weight: 500;
    padding-top: 0px !important;
    display: flex;
}

.wee-faq-question {
  width: 100%;
  min-height: 76px;
  padding: 0 26px;
  background: #F6F6F6;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 24px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  color: #020817;
  border-radius: 15px;
  transition: background 0.25s ease, color 0.25s ease;
}

.wee-faq-question:hover,
.wee-faq-question:focus {
  background: #02193d;
  color: #ffffff;
  text-decoration: none;
}

.wee-faq-question h3 {
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: calc(100% - 40px);
  display: block;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  text-align: left;
  padding-top: 7px !important;
}

.wee-faq-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-left: auto;

  position: relative;
  display: block;

  color: currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.wee-faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
}

.wee-faq-item.active {
  border-color: #02193d;
  background: #02193d;
  color: #ffffff !important;
}

.wee-faq-item.active .wee-faq-question {
  background: #02193d;
  color: #ffffff;
}

.wee-faq-item.active .wee-faq-answer-inner {
  color: #ffffff;
}

.wee-faq-item.active .wee-faq-icon {
  transform: rotate(-135deg);
}

.wee-faq-answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.wee-faq-answer-inner {
  padding: 0 26px 26px 26px;
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #020817;
}

.wee-faq-answer-inner p {
  margin: 0;
}

@media screen and (max-width: 1366px) {
  .wee-faq-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .wee-faq-container {
    width: 85%;
    margin-left: 7.5%;
    margin-right: 7.5%;
    gap: 100px;
  }

  .wee-faq-left,
  .wee-faq-left-pin,
  .wee-faq-image-wrap {
    height: 620px;
    min-height: 620px;
  }

  .wee-faq-question {
    font-size: 24px;
    min-height: 72px;
  }

  .wee-faq-list {
    gap: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .wee-faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .wee-faq-container {
    width: 85%;
    margin-left: 7.5%;
    margin-right: 7.5%;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
  }

  .wee-faq-left {
    width: 100%;
    flex: 0 0 100%;
    min-height: auto;
  }

  .wee-faq-left-pin {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 520px;
  }

  .wee-faq-right {
    width: 100%;
    flex: 0 0 100%;
  }

  .wee-faq-image-wrap {
    height: 520px;
  }

  .wee-faq-question {
    font-size: 22px;
    min-height: 66px;
  }
}

@media screen and (max-width: 767px) {
  .wee-faq-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .wee-faq-container {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    gap: 25px;
  }

  .wee-faq-left-pin,
  .wee-faq-image-wrap {
    height: 330px;
  }

  .wee-faq-list {
    gap: 16px;
  }

  .wee-faq-question {
    min-height: 58px;
    padding: 0 18px;
    font-size: 20px;
    gap: 16px;
  }

  .wee-faq-question h3 {
    max-width: calc(100% - 30px);
  }

  .wee-faq-answer-inner {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
}