.pu-insight-page-help-section {
    position: relative;
    width: 100%;
    background-color: #FFFFFF;
    padding: 85px 0 95px;
}

.pu-insight-page-help-header {
    margin-bottom: 42px;
}

.pu-insight-page-help-header h2 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 52px;
    line-height: 1.1;
    color: var(--pu-insight-navy);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.pu-insight-page-help-header p {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.48;
    color: var(--pu-insight-text-muted);
    max-width: 660px;
    margin: 0;
}

/* 2x2 Grid Layout */
.pu-insight-page-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

/* Help Card Base */
.pu-insight-page-help-card {
    position: relative;
    border: 2px solid transparent;
    border-radius: 24px;
    background: 
        radial-gradient(44.07% 148.16% at 103.09% 107.11%, #250AAB 0%, #0F0445 65%) padding-box, 
        linear-gradient(90deg, #B53C72 0%, #5641E0 100%) border-box;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: background 0.3s ease;
}

.pu-insight-page-help-card:hover {
    background: 
        radial-gradient(44.07% 148.16% at 103.09% 107.11%, #2E0DC4 0%, #0F0445 65%) padding-box, 
        linear-gradient(90deg, #D44A88 0%, #6D57FF 100%) border-box;
}

.pu-insight-page-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.pu-insight-page-uni-top {
    margin-bottom: 16px;
}

.pu-insight-page-card-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Card Brand Icon Asset (Renders embedded SVG background & radius cleanly) */
.pu-insight-page-help-card-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* Large Numbers / Titles */
.pu-insight-page-card-number {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.0;
    color: var(--pu-insight-yellow);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.pu-insight-page-card-title {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: var(--pu-insight-yellow);
    margin: 0;
    white-space: nowrap;
}

.pu-insight-page-yourdost-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.pu-insight-page-card-brand-name {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.0;
    color: var(--pu-insight-yellow);
    letter-spacing: -0.01em;
}

.pu-insight-page-dost-caps {
    font-weight: 700;
}

/* Vertical Divider inside Card (Proportional 52px Height Match) */
.pu-insight-page-card-divider {
    width: 1.5px;
    height: 52px;
    background-color: #FFFFFF;
    flex-shrink: 0;
}

/* Card Right Side Details (Vertically Centered to Divider) */
.pu-insight-page-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pu-insight-page-card-info h4 {
    font-family: var(--pu-insight-font-heading);
    font-weight: 700;
    font-size: 21px;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.pu-insight-page-card-info p {
    font-family: var(--pu-insight-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0;
}

/* University Phone Number Badges */
.pu-insight-page-phone-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.pu-insight-page-phone-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-family: var(--pu-insight-font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pu-insight-page-phone-badge:hover {
    background-color: var(--pu-insight-yellow);
    color: var(--pu-insight-navy);
}

/* Yellow Action Button */
.pu-insight-page-card-bottom {
    display: flex;
    align-items: center;
}

.pu-insight-page-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pu-insight-yellow);
    color: var(--pu-insight-navy);
    font-family: var(--pu-insight-font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.pu-insight-page-card-btn:hover {
    color: var(--pu-insight-navy);
    background-color: #FFD633;
}

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

    .pu-insight-page-help-header {
        margin-bottom: 30px;
    }

    .pu-insight-page-help-header h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

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

    .pu-insight-page-help-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pu-insight-page-help-card {
        padding: 24px 20px;
        border-radius: 20px;
        min-height: auto;
    }

    .pu-insight-page-card-top {
        gap: 14px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .pu-insight-page-phone-icon {
        width: 40px;
        height: 40px;
    }

    .pu-insight-page-phone-icon svg {
        width: 18px;
        height: 18px;
    }

    .pu-insight-page-card-number {
        font-size: 40px;
    }

    .pu-insight-page-card-title {
        font-size: 26px;
    }

    .pu-insight-page-yourdost-logo {
        height: 36px;
    }

    .pu-insight-page-card-brand-name {
        font-size: 32px;
    }

    .pu-insight-page-card-divider {
        height: 32px;
    }

    .pu-insight-page-card-info h4 {
        font-size: 17px;
        color: #FFFFFF;
    }

    .pu-insight-page-card-info p {
        font-size: 15px;
        color: #FFFFFF;
    }

    .pu-insight-page-phone-badges {
        gap: 8px;
        margin-bottom: 18px;
    }

    .pu-insight-page-phone-badge {
        font-size: 13px;
        padding: 6px 12px;
    }

    .pu-insight-page-card-btn {
        padding: 10px 24px;
        font-size: 15px;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .pu-insight-page-help-header h2 {
        font-size: 26px;
    }
	.pu-insight-page-card-info p{
		font-size: 14px
	}
    .pu-insight-page-card-number {
        font-size: 30px;
    }
    .pu-insight-page-card-title {
        font-size: 22px;
    }
    .pu-insight-page-card-brand-name {
        font-size: 28px;
    }
    .pu-insight-page-card-divider {
        height: 25px;
    }
}