.pu-insight-page-faq-section {
    background-color: #F5F5F7;
    padding: 85px 0 95px;
    color: #0F0445;
    position: relative;
    overflow: hidden;
}

.pu-insight-page-faq-header {
    margin-bottom: 44px;
}

.pu-insight-page-faq-kicker {
    font-family: var(--pu-insight-font-body);
    font-size: 36px;
    font-weight: 600;
    color: #0F0445;
    display: block;
    margin-bottom: 8px;
}

.pu-insight-page-faq-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14;
    margin: 0;
    max-width: 900px;
}

.pu-insight-page-faq-list {
    width: 100%;
}

.pu-insight-page-faq-item {
    border-bottom: 1px solid #DCDCE2;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.pu-insight-page-faq-list > .pu-insight-page-faq-item:first-child {
    padding-top: 0;
}

.pu-insight-page-faq-item.pu-insight-page-faq-hidden {
    display: none;
}

.pu-insight-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: #4A4D54;
    transition: color 0.3s ease;
}

.pu-insight-page-faq-question span{
	cursor: pointer;
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    
}

.pu-insight-page-faq-item.open .pu-insight-page-faq-question,
.pu-insight-page-faq-question:hover {
    color: #0F0445;
}

.pu-insight-page-faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.pu-insight-page-faq-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 3.5px;
    background-color: #707070;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pu-insight-page-faq-icon::after {
    content: '';
    position: absolute;
    width: 3.5px;
    height: 18px;
    background-color: #707070;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pu-insight-page-faq-item.open .pu-insight-page-faq-icon::before {
    transform: rotate(45deg);
    background-color: #707070;
}

.pu-insight-page-faq-item.open .pu-insight-page-faq-icon::after {
    transform: rotate(45deg);
    background-color: #707070;
}

.pu-insight-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.pu-insight-page-faq-answer p{
	font-size: 18px;
}

.pu-insight-page-faq-item.open .pu-insight-page-faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
}

.pu-insight-page-faq-answer p {
    font-family: var(--pu-insight-font-body);
    font-size: 16px;
    line-height: 1.55;
    color: #4A4D54;
    margin: 0;
    max-width: 900px;
}

.pu-insight-page-faq-btn-wrapper {
    margin-top: 36px;
}

.pu-insight-page-faq-view-btn {
    background-color: #0F0445;
    color: #FFFFFF;
    font-family: var(--pu-insight-font-heading);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.pu-insight-page-faq-view-btn:hover {
    background-color: #1B1254;
}

/* Responsive Mobile Layout for FAQ Section (< 991.98px) */
@media (max-width: 991.98px) {
    .pu-insight-page-faq-section {
        padding: 50px 0 60px;
    }

    .pu-insight-page-faq-header {
        margin-bottom: 28px;
    }

    .pu-insight-page-faq-kicker {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .pu-insight-page-faq-header h2 {
        font-size: 28px;
        line-height: 1.18;
    }

    .pu-insight-page-faq-item {
        padding: 20px 0;
    }

    .pu-insight-page-faq-question {
        font-size: 18px;
        line-height: 1.35;
    }

    .pu-insight-page-faq-answer p {
        font-size: 14px;
        line-height: 1.48;
    }

    .pu-insight-page-faq-btn-wrapper {
        margin-top: 28px;
    }

    .pu-insight-page-faq-view-btn {
        width: 100%;
        text-align: center;
        border-radius: 50px;
        padding: 16px 24px;
        font-size: 16px;
    }
}