.frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0px 92px;
    position: relative;
    background-color: var(--erp-white-3);
}

.frame .frame-FAQ-wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 64px 64px;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.frame .frame-FAQ {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #f3f4f6;
}

.frame .frame-div-wrapper {
    justify-content: center;
    gap: 16px;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.frame .frame-text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Outfit-Bold", Helvetica;
    font-weight: 700;
    color: var(--erp-blk);
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 56px;
    white-space: nowrap;
}

.frame .frame-key-features-wrapper {
    gap: 40px;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.frame .frame-key-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 0px 24px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.frame .frame-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 32px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: var(--erp-blk);
	overflow: visible; /* ✅ prevent line from being clipped */
}

.frame .frame-div {
    justify-content: space-between;
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.frame .frame-text-wrapper-2 {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-family: "Outfit-Medium", Helvetica;
    font-weight: 500;
    color: var(--erp-blk);
    font-size: 20px;
    letter-spacing: 0;
    line-height: 32px;
}

.frame .frame-dropdown {
    position: relative;
    width: 24px;
    height: 24px;
    aspect-ratio: 1;
}
img.frame-dropdown {
  transition: transform 0.4s ease;
}

.frame .frame-p {
    position: relative;
    font-family: "Outfit-Regular", Helvetica;
    font-weight: 400;
    color: var(--erp-blk);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
	
	  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.frame .frame-p.active {
  opacity: 1;
   max-height: 500px;   
}
.frame-feature .frame-rectangle {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: -10px;
    background-color: var(--erp-primary);
    border-radius: 32px;
    transform: rotate(180deg);
	 opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1; /* optional: ensure it appears above background */
}

.frame-feature.active .frame-rectangle {
  opacity: 1;
}


/* Original CSS code should be injected here */
/* Additional styles for semantic HTML elements */
.frame-feature {
    cursor: pointer;
}



/* Ensure proper heading hierarchy */
.frame .frame-text-wrapper-2 {
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .frame {
    padding: 0 16px;
  }

  .frame .frame-FAQ {
    padding: 32px 8px;
    gap: 32px;
  }

  .frame .frame-text-wrapper {
    font-size: 24px;
    line-height: 36px;
    white-space: normal;
  }

  .frame .frame-key-features-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .frame .frame-key-features {
    padding-left: 8px;
  }

  .frame .frame-feature {
    padding: 24px 12px;
    gap: 16px;
  }

  .frame .frame-div {
    flex-wrap: wrap;
    gap: 12px;
  }

  .frame .frame-text-wrapper-2 {
    font-size: 18px;
    line-height: 28px;
  }

  .frame .frame-p {
    font-size: 14px;
    line-height: 22px;
  }

  .feature .rectangle {
    left: -6px;
  }

  .frame .frame-dropdown {
    width: 20px;
    height: 20px;
  }
}

/* For very small devices */
@media (max-width: 480px) {
  .frame .frame-text-wrapper {
    font-size: 20px;
    line-height: 28px;
  }

  .frame .frame-text-wrapper-2 {
    font-size: 16px;
    line-height: 24px;
  }

  .frame .frame-p {
    font-size: 13px;
    line-height: 20px;
  }
}
