* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 50px;
            padding: 20px 0;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
        }
        
        h1:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 15px auto 0;
        }
        
        .brands-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin: 40px 0;
        }
        
        .brand-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .brand-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .brand-link {
            text-decoration: none;
            color: inherit;
            display: block;
            flex: 1;
            cursor: pointer;
        }
        
        .image-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
        }
        
        .brand-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .brand-card:hover .brand-image {
            transform: scale(1.08);
        }
        
        .brand-info {
            padding: 22px;
            text-align: center;
            background: white;
            z-index: 2;
            position: relative;
        }
        
        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        
        .brand-card:hover .brand-name {
            color: #3498db;
        }
        
        .brand-tagline {
            color: #6c757d;
            font-size: 1rem;
            margin-top: 8px;
            font-style: italic;
        }
        
        .visit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 200px;
        }
        
        .visit-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .brand-card:hover .visit-btn i {
            transform: translateX(4px);
        }
        
        .visit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }
        
        .stats {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            background: white;
            padding: 25px 35px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 200px;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        footer {
            text-align: center;
            margin-top: 70px;
            padding: 30px;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
        }
        
        @media (max-width: 1200px) {
            .brands-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .brands-container {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 40px auto;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1.05rem;
            }
            
            .stats {
                gap: 20px;
            }
            
            .stat-item {
                padding: 20px 25px;
                min-width: 160px;
            }
            
            .stat-value {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .subtitle {
                font-size: 0.95rem;
            }
            
            .stat-item {
                padding: 15px 20px;
                min-width: 140px;
            }
            
            .stat-value {
                font-size: 1.8rem;
            }
        }