.clientele {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }

        .clientele h1 {
            font-size: 2.5rem;
            color: #333;
            text-align: center;
            margin-bottom: 10px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .clientele-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            align-items: center;
        }

        .client-card {
            width: 100%;
            height: 150px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 2px;
            border: 1px solid #c4c4c4;
        }

        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .client-logo {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
            text-align: center;
            line-height: 1.3;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Specific styling for different brands */
        .radisson {
            /* background: linear-gradient(135deg, #1e3a8a, #3b82f6); */
            color: white;
        }
        
        

       

        /* Tablet responsive */
        @media (max-width: 1024px) {
            .clientele-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .clientele h1 {
                font-size: 2.2rem;
            }

            .client-card {
                height: 130px;
            }
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .clientele {
                padding: 10px 45px;
                margin: 10px;
            }
            
            .clientele h1 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .clientele-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .client-card {
                height: 120px;
            }
            
            .client-logo {
                font-size: 0.8rem;
            }
        }

        /* Small mobile responsive */
        @media (max-width: 480px) {
            .clientele-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .clientele h1 {
                font-size: 1.5rem;
            }
            
            .client-card {
                height: 200px;
            }
            
            .client-logo {
                font-size: 0.9rem;
            }
        }