        /* Styles specifically to structure the dynamic brand layout */
        .brand-section-title {
            text-align: center;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            color: #222;
        }
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            padding: 20px 10px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        .brand-card {
            background: #ffffff;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }
        .brand-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .logo-wrapper {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            background: #fafafa;
            border-radius: 4px;
            padding: 10px;
        }
        .logo-wrapper img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
            /* Fallback strategy if a specific remote logo fails to load */
            filter: grayscale(10%) contrast(110%);
        }
        .brand-card h4 {
            margin: 10px 0 5px;
            font-size: 1.1rem;
            color: #111;
            font-weight: bold;
        }
        .brand-card p {
            margin: 0;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.3;
        }