/* Trust Section Scoped CSS */
#homepage-trust-section-root {
    padding: 60px 5%;
    background: #f8f8f8;
    color: #333;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #eee;
}

#homepage-trust-section-root .trust-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 10px;
}

#homepage-trust-section-root .trust-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* Center the cluster */
    text-align: left;
    /* Text stays left aligned relative to icon */
    gap: 15px;
    padding: 15px;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
}

#homepage-trust-section-root .trust-item:hover {
    transform: translateY(-5px);
}

#homepage-trust-section-root .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f15406;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#homepage-trust-section-root .trust-item:hover .icon-wrapper {
    background: #f15406;
    color: #fff;
}

#homepage-trust-section-root .text-content {
    text-align: left;
}

#homepage-trust-section-root .text-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #222;
}

#homepage-trust-section-root .text-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
    #homepage-trust-section-root .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    #homepage-trust-section-root .trust-container {
        grid-template-columns: 1fr;
    }

    #homepage-trust-section-root .trust-item {
        justify-content: flex-start;
        padding-left: 10px;
        /* Slight indent */
    }
}