
        .container1 {
            width: 90%;

            margin: 20px auto;
            text-align: center;
        }
        h1 {
            color: #333;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .client-box {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
        }
        .client-box img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }