/* Standalone Q&A Section */
.qa-standalone-section {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  overflow: hidden; /* to ensure the before element doesn't overflow the rounded corners */
  background-color: #fff;
}
.grapper-qna {
  position: relative;
  padding: 40px 0;
}
.grapper-qna::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/background-qna.svg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
}

.qa-standalone-section__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.qa-standalone-section__left {
  flex: 1;
}

.qa-standalone-section__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.qa-standalone-section__icon {
  margin-bottom: 24px;
}

.qa-standalone-section__title {
  color: rgba(0, 0, 0, 0.88);
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
}

.qa-standalone-section__description {
  color: #00000073;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.qa-standalone-section__right {
  flex: 1;
}

.qa-standalone-section__right .qa-form__control {
  padding: 0;
}

.qa-standalone-section__right .qa-form__input,
.qa-standalone-section__right .qa-form__textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.qa-standalone-section__right .qa-form__input::placeholder,
.qa-standalone-section__right .qa-form__textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.qa-standalone-section__right .qa-form__input {
  padding: 0 12px;
  height: 40px;
}

.qa-standalone-section__right .qa-form__textarea {
  min-height: 80px;
  padding: 8px 12px;
}

.qa-standalone-section__right #recaptcha-container {
  padding: 0;
  margin: 8px 0;
}

.qa-standalone-section__right #btn_submit_qa {
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 8px;
  background: #1251ee;
  color: #fff;
  border: none;
  cursor: pointer;
  margin: 0;
}

.qa-standalone-section__right #btn_submit_qa:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991.98px) {
  .qa-standalone-section {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .qa-standalone-section__content {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .qa-standalone-section__left {
    flex: auto;
    padding: 0;
  }

  .qa-standalone-section__right {
    flex: auto;
  }

  .qa-standalone-section__title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .qa-standalone-section {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .qa-standalone-section__title {
    font-size: 20px;
  }

  .qa-standalone-section__right .d-flex.gap--8 {
    flex-direction: column;
  }
}
