
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #ffffff;
        }

        /* Hero Section */
        .brands-hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                        url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-content {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease-out 0.5s forwards;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-title {
            font-size: 4rem;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            font-family: 'Times New Roman', serif;
        }

        /* Brands Grid */
        .brands-grid {
            padding: 5rem 10%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
        }

        .brand-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .brand-card:hover {
            transform: translateY(-10px);
        }

        .brand-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.5s ease;
        }

        .brand-card:hover .brand-image {
            transform: scale(1.05);
        }

        .brand-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
        }

        .brand-name {
            font-size: 1.5rem;
            color: #c5a47e;
            margin-bottom: 0.5rem;
        }

        .brand-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Featured Brand Section */
        .featured-brand {
            margin: 5rem 10%;
            background: #1a1a1a;
            border-radius: 10px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
        }

        .featured-brand-image {
            height: 400px;
            object-fit: cover;
        }

        .featured-brand-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-brand-title {
            font-size: 2.5rem;
            color: #c5a47e;
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .brands-grid {
                grid-template-columns: 1fr;
                padding: 3rem 5%;
            }

            .featured-brand {
                grid-template-columns: 1fr;
            }
        }
