@media (max-width: 960px) {
            /* Mobile Nav */
            .hamburger { display: flex; }
            .nav-links {
                position: absolute;
                top: 0; left: 0; width: 100%; height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 40px 20px;
                /* Hide by default */
                transform: translateX(100%);
                opacity: 0;
                transition: 0.4s ease-in-out;
                z-index: 1500; /* Behind the hamburger button */
            }
            .nav-links.active { transform: translateX(0); opacity: 1; }
            .nav-links li { margin: 20px 0; width: 100%; text-align: center; font-size: 1.2rem; }
            .nav-links .btn { margin-top: 20px; width: 80%; }

            /* Hero Tablet/Mobile */
            .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; gap: 40px; }
            .hero-text { order: 1; }
            .hero-visual { order: 2; height: 450px; width: 100%; max-width: 500px; margin: 0 auto; }
            
            /* Responsive Images in Hero */
            .img-main { width: 85%; height: 80%; left: 50%; transform: translateX(-50%); border-radius: 30px; }
            .img-secondary { width: 45%; height: 45%; right: -10px; bottom: 20px; border-width: 6px; }
            
            .float-ui { padding: 8px 15px; font-size: 0.75rem; }
            .float-1 { top: 20px; right: 0; }
            .float-2 { bottom: 50px; left: 0; }
        }

         /* --- TRUST BAR SECTION --- */
       
        @media (min-width: 900px) {
            .divider {
                display: block;
            }
            .trust-item {
                justify-content: flex-start; /* Left align on desktop */
                flex: 0 1 auto; /* Don't stretch too much */
            }
        }

        /* Mobile Adjustments */
        @media (max-width: 600px) {
            .trust-bar-container {
               
                align-items: flex-start;
                padding: 1.5rem;
            }
            .trust-item {
                width: 100%;
                justify-content: flex-start;
                border-bottom: 1px solid rgba(0,0,0,0.05);
                padding-bottom: 1rem;
            }
            .trust-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }