    /* Hero Section Styles */


    .ways-to-give-hero .campaign-badge {
        display: inline-block;
        background-color: #C4D600;
        color: #00426a;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 3px;
        margin-bottom: 20px;
        width: fit-content;
    }

    .ways-to-give-hero h1 {
        font-size: 48px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .ways-to-give-hero .campaign-excerpt {
        font-size: 18px;
        line-height: 1.6;
        margin: 0;
    }

    .ways-to-give-hero .hero-image img {
        width: 100%;
        height: auto;
    }

    /* Tablet Responsive */
    @media (max-width: 991px) {
        .ways-to-give-hero h1 {
            font-size: 36px;
        }

        .ways-to-give-hero .campaign-excerpt {
            font-size: 16px;
        }

        .ways-to-give-hero .hero-content {
            margin-bottom: 30px;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
        .ways-to-give-hero h1 {
            font-size: 28px;
        }

        .ways-to-give-hero .campaign-excerpt {
            font-size: 15px;
        }

        .ways-to-give-hero .campaign-badge {
            font-size: 11px;
            padding: 5px 12px;
        }

        /* Progress stats stack on mobile */
        .ways-to-give-progress .progress-stats {
            flex-direction: column;
            gap: 20px;
        }

        .ways-to-give-progress .stat-progress {
            width: 100%;
            max-width: 100%;
            order: -1;
        }
    }

    /* Progress Bar Styles */
    .ways-to-give-progress .progress-stats {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px 0;
    }

    .ways-to-give-progress .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ways-to-give-progress .stat-progress {
        flex: 1;
        max-width: 400px;
    }

    span.stat-value {
        color: #C4D600;
        font-weight: 700;
        font-size: 24px;
    }

    span.stat-label {
        color: #fff;
        font-weight: 700;
        font-size: 24px;
    }

    .ways-to-give-progress .progress-bar-container {
        width: 100%;
        height: 10px;
        background-color: #707372;
        border-radius: 5px;
        overflow: hidden;
        margin-top: 8px;
    }

    .ways-to-give-progress .progress-bar-fill {
        height: 100%;
        background-color: #C4D600;
        border-radius: 5px;
        transition: width 0.3s ease;
    }
