  .dcx-faq {
    max-width: 1235px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .dcx-faq *,
  .dcx-faq *::before,
  .dcx-faq *::after {
    box-sizing: border-box;
  }

  .dcx-faq-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    padding: 0 20px;
    background: rgba(237, 26, 59, 0.1);
    border-radius: 34px;
    color: #e71939;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    white-space: nowrap;
  }

  .dcx-faq-title {
    margin: 0;
    color: #1d293d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
  }

  .dcx-faq-outer {
    width: 100%;
    max-width: 810px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
  }

  .dcx-faq-list {
    width: 100%;
    max-width: 795px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dcx-faq-item {
    width: 100%;
    max-width: 700px;
    border-bottom: 1px solid #e2e8f0;
  }

  .dcx-faq-item:last-child {
    border-bottom: 1px solid #e2e8f0;
  }

  .dcx-faq-question {
    width: 100%;
    min-height: 60px;
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
  }

  .dcx-faq-question-text {
    color: #314158;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    display: flex;
    align-items: center;
  }

  .dcx-faq-toggle {
    position: relative;
    width: 30px;
    height: 30px;
    min-width: 30px;
    flex: 0 0 30px;
    border-radius: 999px;
    background: linear-gradient(88deg, #b10d28 0.47%, #ed1a3b 98.23%);
  }

  .dcx-faq-toggle::before,
  .dcx-faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #ffffff;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .dcx-faq-toggle::before {
    width: 10px;
    height: 2px;
  }

  .dcx-faq-toggle::after {
    width: 2px;
    height: 10px;
  }

  .dcx-faq-item.is-open .dcx-faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0);
  }

  .dcx-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.24s ease;
  }

  .dcx-faq-item.is-open .dcx-faq-answer {
    grid-template-rows: 1fr;
  }

  .dcx-faq-answer-inner {
    overflow: hidden;
  }

  .dcx-faq-answer-content {
    padding: 0 0 18px;
    color: #45556c;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
  }

  .dcx-faq-answer-content p {
    margin: 0;
    color: #45556c;
    font: inherit;
    line-height: inherit;
  }

  .dcx-faq-answer-content a {
    color: #e71939;
    text-decoration: none;
  }

  .dcx-faq-answer-content a:hover {
    text-decoration: underline;
  }

  .dcx-faq-answer-content strong,
  .dcx-faq-answer-content b {
    color: #1d293d;
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .dcx-faq-title {
      font-size: 34px;
      line-height: 42px;
    }

    .dcx-faq-outer {
      max-width: 100%;
      padding-left: 0;
    }

    .dcx-faq-list {
      max-width: 100%;
    }

    .dcx-faq-item {
      max-width: 100%;
    }
  }

  @media (max-width: 640px) {
    .dcx-faq {
      gap: 20px;
    }

    .dcx-faq-title {
      font-size: 30px;
      line-height: 38px;
    }

    .dcx-faq-question {
      min-height: 56px;
      padding: 14px 0;
      gap: 16px;
      align-items: flex-start;
    }

    .dcx-faq-question-text {
      font-size: 16px;
      line-height: 22px;
    }

    .dcx-faq-answer-content {
      font-size: 14px;
      line-height: 25px;
      padding-bottom: 16px;
    }
  }
