/* Global Impact Section Redesign */
#global-impact {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.impact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.impact-content {
    flex: 1;
    text-align: left;
}

.impact-headline {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.impact-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.impact-btn {
    display: inline-block;
    font-family: var(--font-heading);
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    text-transform: uppercase;
}

.impact-btn:hover {
    background: #FF3333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
}

.impact-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.impact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); */
    /* Removed box-shadow as the graphic might be transparent/irregular */
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.impact-image:hover {
    transform: scale(1.02);
}

.impact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 69, 58, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .impact-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .impact-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .impact-headline {
        font-size: 3.5rem;
    }

    .impact-text {
        margin-left: auto;
        margin-right: auto;
    }
}