/* Trust Promise Section (Why Us Supplement) */
.trust-promise {
    margin-top: 50px;
    background: var(--white);
    border: 1px solid rgba(230, 81, 0, 0.2);
    /* light primary border */
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.trust-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary-color);
}

.trust-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.trust-header h3 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 4px;
    margin-right: 15px;
    flex-shrink: 0;
    background-color: rgba(230, 81, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-promise {
        padding: 25px;
    }

    .trust-header h3 {
        font-size: 20px;
    }
}