
  .dimo-faq {
    max-width: 980px;
    margin: 0 auto;
    color: #1F1F1F;
    font-family: "OpenSans-Regular", "Open Sans", Arial, sans-serif;
    font-weight: 400;
  }

  .dimo-faq__heading {
    margin-bottom: 28px;
  }

  .dimo-faq__heading p {
    margin: 0 0 8px;
    color: #B90812;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .dimo-faq__heading h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
  }

  .dimo-faq__row {
    position: relative;
    margin-bottom: 12px;
  }

  .dimo-faq__row input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .dimo-faq__item {
    overflow: hidden;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
    background: #FFFFFF;
    transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
  }

  .dimo-faq__item:hover {
    border-color: #B90812;
    background: #FFF9F9;
    box-shadow: inset 3px 0 0 #B90812;
  }

  .dimo-faq__question {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 17px;
    line-height: 1.5;
  }

  .dimo-faq__question i {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
  }

  .dimo-faq__question i::before,
  .dimo-faq__question i::after {
    position: absolute;
    top: 8px;
    left: 1px;
    width: 16px;
    height: 2px;
    background: #B90812;
    content: "";
    transition: transform 260ms ease;
  }

  .dimo-faq__question i::after {
    transform: rotate(90deg);
  }

  .dimo-faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 300ms ease;
  }

  .dimo-faq__answer > div {
    min-height: 0;
    padding: 0 58px 0 22px;
    color: #5F5F5F;
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 300ms ease, padding 300ms ease;
  }

  .dimo-faq__row input:checked + .dimo-faq__item {
    border-color: #B90812;
    box-shadow: inset 3px 0 0 #B90812;
  }

  .dimo-faq__row input:checked + .dimo-faq__item .dimo-faq__answer {
    grid-template-rows: 1fr;
  }

  .dimo-faq__row input:checked + .dimo-faq__item .dimo-faq__answer > div {
    padding-bottom: 22px;
    opacity: 1;
    transform: translateY(0);
  }

  .dimo-faq__row input:checked + .dimo-faq__item .dimo-faq__question i::after {
    transform: rotate(0);
  }

  @media (max-width: 640px) {
    .dimo-faq__heading h2 {
      font-size: 26px;
    }

    .dimo-faq__question {
      min-height: 64px;
      padding: 16px;
      font-size: 16px;
    }

    .dimo-faq__answer > div {
      padding-right: 16px;
      padding-left: 16px;
      font-size: 15px;
    }
  }
