
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: #000000;
            color: white;
            padding: 2.5rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
            font-weight: 700;
        }
        
        .subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .brands-section {
            margin-bottom: 4rem;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #222;
            font-weight: 600;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #000;
            margin: 10px auto;
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 3rem;
        }
        
        .brand-card {
            background: #f8f8f8;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: #f0f0f0;
        }
        
        .brand-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #000;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .brand-card:hover:before {
            transform: scaleX(1);
        }
        
        .brand-logo {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 50%;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        
        .brand-card:hover .brand-logo {
            transform: scale(1.1);
        }
        
        .brand-logo i {
            font-size: 28px;
            color: #000;
        }
        
        .brand-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }
        
        .shoe-icon {
            position: absolute;
            bottom: 10px;
            right: 15px;
            color: rgba(0, 0, 0, 0.1);
            font-size: 24px;
        }
        
        @media (max-width: 768px) {
            .brands-grid {
                grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
                gap: 20px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .brand-card {
                padding: 25px 15px;
            }
        }
    