:root { 
            --accent: #ff1d00; 
            --secondary: #000000;
            --bg: #ffffff;
        }
        body { 
            font-family: 'DM Sans', sans-serif; 
            margin: 0; padding: 0; 
            background: var(--bg); color: #1e293b; 
        }
        h1, h2, h3 { font-family: 'DM Serif Display', serif; color: #0f172a; }
        .brand-header { 
            background: #fff; padding: 1rem 2rem; 
            display: flex; justify-content: space-between; 
            box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
            border-bottom: 2px solid var(--accent);
        }
        .brand-logo { max-height: 40px; }
        .brand-name { font-weight: 800; font-size: 1.25rem; color: var(--accent); text-decoration: none; }
        a { color: var(--accent); text-decoration: none; }
        a:hover { color: var(--secondary); text-decoration: underline; }
        