.FAQ-MAIN {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%
}

.accordian {
    width: 100%;
    max-width: 950px;
    margin: 0 auto
}

.item {
    background-color: #e7ecf5;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    transition: background-color .3s ease
}

.item.selected {
    background-color: #fff6f6;
    border: 1px #00000047 solid
}

.FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    color: #131414;
    gap: 10px; /* Add spacing between the text and icon */
}

.faqQuestion {
    flex: 1; /* Allow question text to take up remaining space */
    font-size: 20px;
    color: #131414;
    text-align: start;
    white-space: normal; /* Allow wrapping */
    word-break: break-word; /* Prevent overflow */
}

.FAQ-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .8s cubic-bezier(0, 1, 0, 1);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #131414
}

.FAQ-content.show {
    max-height: 9999px;
    transition: max-height .8s cubic-bezier(1, 0, 1, 0)
}

.expandToggle {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}


.FAQ-ShowMore {
    text-align: center;
    margin-top: 10px
}

.FAQ-ShowMore button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #06965c;
    color: #fff;
    cursor: pointer;
    transition: background-color .3s ease
}

.FAQ-ShowMore button:hover {
    background-color: #8ee0c4;
    color: #000;
    font-weight: 700
}

@media (max-width:1024px) {
    .accordian {
        max-width: 90%
    }

    .item {
        padding: 12px 16px
    }

    .FAQ-title {
        font-size: 16px
    }

    .expandToggle {
        width: 28px;
        height: 28px;
        font-size: 16px
    }
}

@media (max-width:768px) {
    .accordian {
        padding: 10px
    }

    .item {
        padding: 10px 14px
    }

    .FAQ-title {
        font-size: 14px
    }

    .expandToggle {
        width: 24px;
        height: 24px;
        font-size: 14px
    }
}

@media (max-width:480px) {
    .accordian {
        padding: 5px
    }

    .item {
        padding: 8px 12px
    }

    .FAQ-title {
        font-size: 12px
    }

    .expandToggle {
        width: 20px;
        height: 20px;
        font-size: 12px
    }
}
