  .types-of-section-accordion-button {
    font-size: 18px;
    font-weight: bold;
    color: #508d24;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: 1px solid black;
    height: 50px;
    width: 100%;
    line-height: 50px;
    text-align: center;
    padding-right: 50px;  /* Reserve space for the arrow */
    box-sizing: border-box;  /* Include padding and border in element's total width and height */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 8px;  /* Rounded corners */
    margin-bottom: 10px;  /* Space between each button */
  }

  .types-of-section-accordion-button::after {
    content: '\f054';
      font-family: 'FontAwesome', sans-serif;  /* Specify FontAwesome */
    position: absolute;
    right: 10px;
    font-size: 24px;
    transition: transform 0.3s ease;
    line-height: 50px;
  }

  .types-of-section-accordion-button.active::after {
    transform: rotate(90deg);
  }

  .types-of-section-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    text-align: center;
  }
  