﻿.full-width-breakout-trustedbystrip {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #fff;
}
.trusted-strip {
    background-color: #ffffff;
    padding: 2.5rem 1.5rem;
    border-top: 0px solid #e0e0e0;
    border-bottom: 0px solid #e0e0e0;
}

.trusted-strip-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trusted-strip-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
    font-family: 'DM Sans', sans-serif;
}

.trusted-strip-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .trusted-strip-logos img {
        max-height: 80px;
        max-width: 160px;
        object-fit: contain;
        opacity: 0.9;
        transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
        will-change: transform;
    }

        .trusted-strip-logos img:hover {
            opacity: 1;
            transform: scale(1.07); /* Slight zoom on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); /* Soft shadow for emphasis */
        }
