.resizedI{
    height:100px;
    width:auto;
    }
    
      .accordion {
          width: 90%;
          max-width: 1000px;
          margin: 25px auto;
      }

      .accordion-item {
          background-color: white;
          color: var(--text-color);
          margin: 5px 0;
          border-radius: 0.5rem;
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
      }

      .accordion-item-header {
          padding: 0.5rem 3rem 0.5rem 1rem;
          min-height: 1.5rem;
          line-height: 1.25rem;
          font-weight: bold;
          display: flex;
          align-items: center;
          position: relative;
          cursor: pointer;
      }

      .accordion-item-body {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.2s ease-out;
      }
      .accordion-item-header::after {
          content: "\002B";
          font-size: 2rem;
          position: absolute;
          right: 1rem;
      }
      .accordion-item-header.active::after {
          content: "\2212";
      }