@media (max-width: 768px) {
    /* trust section */
    .trust-section {
        background-color: #f5f5f7;
        padding: 80px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .trust-title {
        color: #2E2E2E;
        text-align: center;
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 33.6px */
        letter-spacing: -0.48px;
        margin: 0;
    }

    .trust-title .highlight {
        color: var(--sub-70, #006DFE);
        font-family: Pretendard;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
        letter-spacing: -0.48px;
    }

    .trust-title .highlight::before {
        content: "";
        display: block;
    }

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

    .trust-card {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        border-radius: 30px;
        padding: 3px; /* This creates the border thickness */
        background: var(--gradation);
        box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
    }

    .trust-card-content {
        width: 100%;
        background-color: #ffffff;
        display: flex;
        padding: 18px 29px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        border-radius: 26px; /* outer radius - padding */
        gap: 6px;
        box-sizing: border-box;
    }

    .trust-card-icon {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-card-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-card-subtitle {
        color: var(--gray-70, #535353);
        font-family: Pretendard;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 140%; /* 21px */
        letter-spacing: -0.15px;
        margin: 0;
    }

    .trust-card-title {
        color: var(--gray-90, #101010);
        font-family: Pretendard;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%; /* 25.2px */
        letter-spacing: -0.18px;
        margin: 0;
    }
}
