
    :root { --bg-dark: #0a0a0a; --bg-light: #ffffff; --primary: #00e5ff; --primary-dark: #008ba3; --text-main: #111111; --text-muted: #444444; --border: #eeeeee; }
    body { background: var(--bg-light); color: var(--text-main); font-family: 'Inter', 'Segoe UI', Roboto, sans-serif; line-height: 1.6; margin: 0; padding: 0; }
    
    header { background: var(--bg-dark); padding: 20px 0; border-bottom: 3px solid var(--primary); position: sticky; top:0; z-index: 100; }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
    
    .logo { font-size: 1.8rem; font-weight: 900; color: #ffffff; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }
    .logo span { color: var(--primary); font-weight: 400; text-transform: lowercase; }
    
    .cta-btn { background: var(--primary); color: #000000; border: 2px solid var(--primary); padding: 12px 28px; text-decoration: none; font-weight: 800; display: inline-flex; align-items: center; transition: all 0.3s ease; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
    .cta-btn:hover { background: #ffffff; color: #000000; border-color: #ffffff; }
    
    .hero { position: relative; padding: 120px 20px; background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.95)), url('shopfront-hero.webp') center/cover no-repeat; color: white; text-align: center; border-bottom: 10px solid #1a1a1a; }
    .hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; text-transform: uppercase; letter-spacing: -1px; }
    .hero p { font-size: 1.3rem; font-weight: 400; max-width: 800px; margin: 0 auto 35px; color: #dddddd; }
    
    .trust-bar { background: #1a1a1a; padding: 20px; text-align: center; color: var(--primary); font-size: 1.05rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-bottom: 1px solid #333; }
    .trust-bar span { margin: 0 20px; display: inline-block; }
    
    .container { max-width: 1200px; margin: 60px auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
    
    .card { background: #fff; padding: 40px; margin-bottom: 30px; border: 1px solid var(--border); border-left: 5px solid var(--bg-dark); }
    .card-dark { background: var(--bg-dark); color: #fff; padding: 40px; margin-bottom: 30px; border-left: 5px solid var(--primary); }
    .card h2, .card h3 { color: var(--bg-dark); margin-top: 0; font-size: 1.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: -0.5px; }
    .card-dark h2, .card-dark h3 { color: #fff; }
    
    ul.data-list { list-style: none; padding: 0; margin-bottom: 25px; }
    
    /* ⚡ THE CSS FIX FOR THE BLACK TEXT BUG ⚡ */
    ul.data-list li { padding-left: 30px; position: relative; margin-bottom: 15px; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid #eee; padding-bottom: 10px; color: var(--text-main); }
    .card-dark ul.data-list li { color: #eeeeee; border-bottom-color: #222222; }
    
    ul.data-list li::before { content: "■"; position: absolute; left: 0; top: 0; font-size: 1.2rem; color: var(--primary-dark); }
    
    .faq-item { border: 1px solid #eee; padding: 25px; margin-bottom: 15px; background: #fafafa; }
    .faq-item h4 { color: var(--bg-dark); margin: 0 0 10px 0; font-size: 1.2rem; font-weight: 700; }
    .faq-item p { margin: 0; color: var(--text-muted); }
    
    .local-services { background: #050505; color: #888; padding: 80px 20px 40px; margin-top: 60px; font-size: 0.95rem; border-top: 1px solid #222; }
    .local-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
    .local-grid span { display: block; padding-bottom: 10px; border-bottom: 1px dashed #222; }
    
    details { background: #fff; border: 2px solid #111; padding: 20px; margin-top: 30px; cursor: pointer; transition: all 0.3s; }
    summary { font-weight: 800; color: #111; font-size: 1.2rem; list-style: none; text-align: center; outline: none; text-transform: uppercase; letter-spacing: 1px; }
    summary::-webkit-details-marker { display: none; }
    summary:hover { color: var(--primary-dark); }
    details[open] summary { border-bottom: 2px solid #111; padding-bottom: 20px; margin-bottom: 20px; }
    .directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 20px; }
    .directory-link { display: block; padding: 10px; background: #f9f9f9; border: 1px solid #eee; text-align: center; text-decoration: none; color: #222; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
    .directory-link:hover { background: #111; color: var(--primary); border-color: #111; }

    @media(max-width: 900px) { .container { grid-template-columns: 1fr; display: flex; flex-direction: column; } .hero h1 { font-size: 2.5rem; } .trust-bar span { display: block; margin: 10px 0; } }
    