.pu-insight-page-process-section {
    background-color: var(--pu-insight-navy);
    padding: 85px 0 95px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

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

.pu-insight-page-process-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.14;
    color: #FFFFFF;
    margin-bottom: 16px;
    max-width: 900px;
}

.pu-insight-page-process-header p {
    font-family: var(--pu-insight-font-body);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 960px;
}

.pu-insight-page-process-slider-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.pu-insight-page-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.pu-insight-page-process-card {
    background-color: #1B1254;
    border-radius: 20px;
    padding: 32px 24px;
    border: 2px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 310px;
    transition: transform 0.3s ease;
}

.pu-insight-page-process-card-num {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 18px;
    padding: 4px 14px;
    border-radius: 8px;
    align-self: flex-start;
    margin-bottom: 18px;
}

.pu-insight-page-process-card h3 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: var(--pu-insight-yellow);
    margin-bottom: 14px;
}

.pu-insight-page-process-card p {
    font-family: var(--pu-insight-font-body);
    font-size: 15px;
    line-height: 1.48;
    color: #FFFFFF;
    margin: 0;
}

.pu-insight-page-process-dots {
    display: none;
}

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

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

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

    .pu-insight-page-process-header h2 {
        font-size: 28px;
        line-height: 1.18;
        margin-bottom: 14px;
    }

    .pu-insight-page-process-header p {
        font-size: 14px;
        line-height: 1.45;
    }

    .pu-insight-page-process-slider-wrapper {
        overflow: visible;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 12px;
        padding: 0;
    }

    .pu-insight-page-process-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 15px;
        scroll-padding-right: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .pu-insight-page-process-grid::-webkit-scrollbar {
        display: none;
    }

    .pu-insight-page-process-card {
        flex: 0 0 calc(100% - 54px);
        width: calc(100% - 54px);
        max-width: 336px;
		height: 230px;
		overflow: scroll;
        scroll-snap-align: start;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .pu-insight-page-process-card-num {
        font-size: 14px;
        padding: 3px 12px;
        margin-bottom: 14px;
    }

    .pu-insight-page-process-card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .pu-insight-page-process-card p {
        font-size: 13.5px;
        line-height: 1.42;
    }

    .pu-insight-page-process-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .pu-insight-page-process-dots .pu-insight-page-dot {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .pu-insight-page-process-dots .pu-insight-page-dot.active {
        background-color: var(--pu-insight-yellow);
        width: 24px;
        border-radius: 50px;
    }
}