/* Container Layout */
.vp-stats-section {
    padding: 80px 20px;
    font-family: var(--gp-font, Arial, sans-serif);
}

.vp-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Column */
.vp-stats-left {
    flex: 1;
    max-width: 580px;
}

/* Typography */
.vp-stats-headline {
    font-family: var(--caltapa-font, sans-serif);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    color: #ffffff; /* Updated to White */
    margin-bottom: 15px;
}

/* Highlighted words in the rich text editor will turn Green */
.vp-stats-headline span {
    color: var(--vp-green, #59B259);
}

.vp-stats-subhead {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff; /* Updated to White */
    margin-bottom: 40px;
}

.vp-stats-subhead p {
    margin: 0;
}

/* The Number Grid */
.vp-stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.vp-stat-box {
    flex: 1;
}

.vp-stat-number {
    font-family: var(--caltapa-font, sans-serif);
    font-size: 85px;
    line-height: 1;
    font-weight: 900;
    color: var(--vp-green, #59B259); 
    margin-bottom: 10px;
}

.vp-stat-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff; /* Updated to White */
}

/* CTA Button & Sources */
.vp-stats-cta-wrapper {
    max-width: 400px;
}

.vp-stats-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Updated to White */
    color: var(--vp-pink, #C53B5D); /* Text matches the shadow */
    font-family: var(--gp-font, sans-serif);
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 99px;
    border: 2px solid var(--vp-pink, #C53B5D); /* Pink Border */
    box-shadow: 4px 4px 0px var(--vp-pink, #C53B5D); /* Pink Drop Shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    margin-bottom: 10px;
}

.vp-stats-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--vp-pink, #C53B5D);
    color: var(--vp-pink, #C53B5D);
}

.vp-stats-sources {
    font-size: 12px;
    color: #ffffff; /* Updated to White */
    text-align: center;
}

.vp-stats-sources p {
    margin: 0;
}

.vp-stats-sources a {
    color: #ffffff; /* Updated to White */
    text-decoration: underline;
    margin: 0 5px;
}

/* Right Column */
.vp-stats-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vp-stats-right img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .vp-stats-container {
        flex-direction: column;