.trust-highlights {
    padding: 80px 0;
    background: var(--white);
}

.trust-highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.trust-highlights h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.trust-highlights h2 span {
    color: var(--secondary-color);
}

.trust-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.trust-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(44, 82, 130, 0.08);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.trust-card-icon--security {
    background-color: rgba(44, 82, 130, 0.12);
    color: var(--primary-color);
}

.trust-card-icon--commission {
    background-color: rgba(237, 137, 54, 0.15);
    color: var(--secondary-color);
}

.trust-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.trust-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.trust-card-footnote {
    display: block;
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--dark-color);
    opacity: 0.85;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .trust-highlights {
        padding: 60px 0;
    }

    .trust-highlights h2 {
        font-size: 2rem;
    }

    .trust-highlights-grid {
        grid-template-columns: 1fr;
    }
}
