@media (max-width: 768px) { 
    /* Funding Section */
    .funding-section {
        position: relative;
        width: 100%;
        background-color: #FFF;
        padding: 80px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .funding-content {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .funding-title {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        line-height: 1.4;
        letter-spacing: -0.84px;
        color: #2E2E2E;

        span.highlight::before {
            content: "";
            display: block;
        }
    }

    .funding-title .highlight {
        color: #006DFE;
        font-weight: 700;
    }

    .funding-features-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 0 auto;
    }

    .funding-features {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .funding-features-dots {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
    }

    .feature-card {
        background: #FFFFFF;
        border-radius: 15px;
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
        text-align: center;
        height: 38px;
    }

    .feature-text {
        color: var(--gray-80, #333);
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        line-height: 130%; /* 20.8px */
        letter-spacing: -0.16px;

        br {
            display: block;
        }


    }

    .feature-card-highlight {
        margin-inline: 24px;
        width: calc(100% - 48px);
        background: #FFFFFF;
        border-radius: 20px;
        padding: 20px 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        position: relative;
        overflow: hidden;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
    }

    .feature-card-highlight .feature-text {
        display: inline;
        flex: none;
        color: var(--gray-80, #333);
        font-size: 24px;
        font-weight: 600;
        line-height: 140%;
        letter-spacing: -0.24px;
    }

    .feature-card-highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        padding: 3px;
        background: var(--gradation);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
    }
}
