.suitable-crops-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 80px 0 40px;
    background: #fff;

    .text-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      color: #002b46;

      h2 {
        font-family: Demo, sans-serif;
        font-size: 48px;
        font-weight: 400;
        line-height: 1.2;
        margin: 0;
        color: #002b46;
      }

      p {
        font-family: Inter, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        margin: 0;
        color: #002b46;
        text-align: center;
      }
    }

    .accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }

    .accordion-item {
      border: 0;
      background: transparent;
      margin: 0 !important;
    }

    .accordion-header {
      margin: 0;
    }

    .accordion-button {
      display: flex;
      align-items: center;
      gap: 20px;
      width: 100%;
      padding: 10px 20px;
      border: 1px solid #8fe6e5;
      border-radius: 2px !important;
      background: rgba(0, 181, 211, 0.1);
      box-shadow: none;
      font-family: Inter, sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 24px;
      color: #002b46;

      &:focus {
        box-shadow: none;
        border-color: #8fe6e5;
      }

      &:not(.collapsed) {
        background: rgba(0, 181, 211, 0.1);
        color: #002b46;
        box-shadow: none;
      }

      &::after {
        display: none;
      }

      &::before {
        content: "";
        display: block;
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        background: url("../icons/minus.svg") center / 24px 24px no-repeat;
        margin: 0;
      }

      &.collapsed::before {
        background-image: url("../icons/plus.svg");
      }

      img {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
      }
    }

    .accordion-body {
      padding: 28px 142px;
      background: #fff;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      color: #002b46;
      margin: 0;

      p {
        margin: 0 0 16px;
        font-size: 18px;
        line-height: 28px;
        color: #002b46;
      }

      a {
        color: #002b46;
        font-size: 18px;
        line-height: 28px;
        text-decoration: underline;
      }
    }

    .all-crops-button {
      align-self: flex-start;
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 28px;
      color: #00b5d3;
      text-decoration: underline;
    }

    @media (max-width: 992px) {
      gap: 24px;
      padding: 40px 20px;
      align-items: flex-start;

      .text-container {
        gap: 12px;
        align-items: flex-start;
        width: 100%;

        h2 {
          font-size: 28px;
          line-height: 32px;
        }

        p {
            text-align: start;
        }
      }

      .accordion {
        gap: 0;
      }

      .accordion-item:has(.accordion-collapse.show) {
        background: rgba(0, 181, 211, 0.1);
        border: 1px solid #8fe6e5;
        border-radius: 2px;
      }

      .accordion-button {
        padding: 20px;
        gap: 10px;
        background: transparent !important;
        border: none;

        &:not(.collapsed) {
          background: transparent;
        }

        img {
          margin-inline-end: 10px;
        }
      }

      .accordion-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 20px 20px;
        background: transparent;

        p {
          margin: 0;
          font-size: 16px;
          line-height: 24px;
        }

        a {
          font-size: 18px;
          line-height: 28px;
        }
      }

      .all-crops-button {
        margin-top: 20px;
        font-size: 16px;
        line-height: normal;
      }
    }
}