
    :root { --primary: #003366; --secondary: #d62828; --dark: #111; --light: #f9f9f9; }
    body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background: #fff; }
    
    header { background: #fff; border-bottom: 3px solid var(--primary); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 999; }
    .header-inner { max-width: 1200px; margin: auto; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }
    .logo { font-size: 1.5rem; font-weight: 900; color: var(--primary); text-decoration: none; text-transform: uppercase; }
    .logo span { color: var(--secondary); }
    .cta-btn { background: var(--secondary); color: white; padding: 10px 20px; text-decoration: none; font-weight: bold; border-radius: 4px; display: inline-flex; align-items: center; }
    
    .hero { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('glass-door-repair.webp'); background-size: cover; background-position: center; color: white; padding: 100px 20px; text-align: center; }
    .hero h1 { font-size: 2.5rem; margin: 0 0 10px; font-weight: 800; text-transform: uppercase; }
    
    .trust-bar { background: #f0f0f0; padding: 15px; text-align: center; border-bottom: 1px solid #ddd; font-weight: 600; color: #555; font-size: 0.9rem; }
    .trust-bar span { margin: 0 15px; display: inline-block; }
    
    .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; display: flex; gap: 40px; flex-wrap: wrap; }
    .main-content { flex: 2; min-width: 300px; }
    .sidebar { flex: 1; min-width: 250px; }
    
    .section-title { color: var(--primary); border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 0; }
    .service-box { border: 1px solid #eee; padding: 20px; margin-bottom: 20px; border-radius: 5px; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .service-box h3 { color: var(--secondary); margin-top: 0; }
    
    ul.tick-list { list-style: none; padding: 0; }
    ul.tick-list li { padding-left: 25px; position: relative; margin-bottom: 8px; }
    ul.tick-list li::before { content: "✓"; position: absolute; left: 0; font-size: 1rem; color: var(--primary); font-weight:bold; }
    
    .local-services { background: #222; color: #aaa; padding: 40px 20px; margin-top: 50px; font-size: 0.9rem; }
    .local-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
    .local-grid span { display: block; }
    
    @media(max-width: 768px) { .container { flex-direction: column; } .header-inner { flex-direction: column; gap: 10px; } .hero h1 { font-size: 1.8rem; } }
    