.lfpnd-trust-breakout {
    /* Magic Breakout Logic */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #00132c;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.lfpnd-trust-bar {
    width: 100%;
    padding: 20px 0;
}

.lfpnd-trust-container {
    /* Alignment within the breakout */
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased slightly for larger text */
}

/* FONT AWESOME STYLING */
.trust-icon {
    font-size: 24px; /* Slightly larger to match your new text sizes */
    color: #FFFFFF;  /* Changed to White for visibility on Navy */
    width: 35px;
    text-align: center;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.trust-text strong {
    color: #FFF;
    font-size: 18px;
    font-weight: 800;
}

.trust-desc {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9; /* Subtle softening so it's not as loud as the title */
}

/* --- MOBILE --- */
@media (max-width: 991px) {
    .lfpnd-trust-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .lfpnd-trust-container {
        grid-template-columns: 1fr 1fr;
        padding-left: 20px;
    }
    
    .trust-text strong {
        font-size: 16px;
    }
    
    .trust-desc {
        font-size: 14px;
    }
}