.trusted-text-container {
    text-align: center;
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.trusted-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4A5568;
    font-family: 'Inter', sans-serif;
}

.partners-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.static-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto 6rem auto;
}

.static-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #01262B;
    text-transform: uppercase;
}

/* Dark mode adjustments */
[data-theme="dark"] .static-brand {
    color: var(--text-color);
}
[data-theme="dark"] .trusted-text {
    color: var(--text-muted);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .trusted-text-container {
        margin-top: 4rem;
    }
    
    .static-brands {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .static-brand {
        font-size: 0.9rem;
    }
}