  
        /* Trust Section */
        .trust-section {
            background: linear-gradient(135deg, #1a2b3c 0%, #2c3e50 100%);
            color: white;
            background: var(--color-primary);
        }
        .section {
     padding: clamp(30px, calc( (70 / 1920) * 100vw ), 70px) 0;
}
        .trust-section .section-title {
            color: white;
        }
        .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(24px, 1.9vw, 36px);
    color: #1a2b3c;
    position: relative;
}
        .trust-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .trust-item {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 50px 30px;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .trust-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .trust-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        
        .trust-item h3 {
            font-size: clamp(18px, 1.3vw, 24px);
            margin-bottom: 15px;
            color: #fff;
        }
        
        .trust-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: clamp(14px, 0.85vw, 16px);
        }
        

        @media(max-width:991px){
            .section-title {margin-bottom: 30px;}
        }


        @media(max-width:767px){
            .trust-item {flex: auto;min-width: auto; padding: 25px;}
            .trust-icon{display: none;}
        }