       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .showcase-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .showcase-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            justify-items: center;
            align-items: center;
        }

        .logo-card {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 150px;
        }

        .logo-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .showcase-title {
                font-size: 2rem;
            }

            .logo-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .logo-card {
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .showcase-title {
                font-size: 1.5rem;
            }

            .logo-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }

            .logo-card {
                height: 100px;
            }
        }