
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #f5f7fa;
        }

        /* ===== HEADER ===== */
        .site-header {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .site-logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: #1e40af;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .site-logo:hover { opacity: 0.85; }
        .site-logo .logo-icon {
            background: #1e40af;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        /* Top nav - minimal */
        .top-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }
        .top-nav a {
            color: #475569;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        .top-nav a:hover {
            background: #f1f5f9;
            color: #1e40af;
        }

        /* Dropdown */
        .dropdown { position: relative; }
        .dropdown-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            color: #475569;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
            background: none;
            border: none;
            font-family: inherit;
        }
        .dropdown-toggle:hover { background: #f1f5f9; color: #1e40af; }
        .dropdown-menu {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.12);
            min-width: 300px;
            max-height: 70vh;
            overflow-y: auto;
            padding: 8px;
            z-index: 200;
        }
        .dropdown:hover .dropdown-menu,
        .dropdown.active .dropdown-menu { display: block; }
        .dropdown-menu a {
            display: block;
            padding: 10px 14px;
            color: #334155;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.88rem;
            transition: background 0.15s;
        }
        .dropdown-menu a:hover { background: #f1f5f9; color: #1e40af; }

        /* Mobile */
        .menu-toggle {
            display: none;
            background: none;
            border: 1px solid #e2e8f0;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            color: #475569;
        }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .top-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 12px;
                border-top: 1px solid #e2e8f0;
                margin-top: 12px;
            }
            .top-nav.active { display: flex; }
            .header-inner { flex-wrap: wrap; }
            .dropdown-menu {
                position: static;
                box-shadow: none;
                border: 1px solid #e2e8f0;
                min-width: 100%;
                max-height: 40vh;
            }
        }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
            color: white;
            padding: 80px 24px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 32px;
        }
        .hero-cta {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.4);
            color: white !important;
            padding: 12px 28px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none !important;
            transition: background 0.2s;
        }
        .hero-cta:hover {
            background: rgba(255,255,255,0.25);
        }
        @media (max-width: 768px) {
            .hero { padding: 50px 20px; }
            .hero h1 { font-size: 2rem; }
        }

        /* ===== CITY GRID ===== */
        .section { max-width: 1200px; margin: 0 auto; padding: 50px 24px; }
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }
        .section-subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 40px;
            font-size: 1.05rem;
        }
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }
        .city-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px 20px;
            text-decoration: none;
            color: #1e293b;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .city-card:hover {
            border-color: #93c5fd;
            box-shadow: 0 4px 20px rgba(30,64,175,0.08);
            transform: translateY(-2px);
        }
        .city-card .card-emoji {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .city-card .card-info h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .city-card .card-info span {
            font-size: 0.8rem;
            color: #64748b;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .feature-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        .feature-item .feat-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .feature-item h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 6px;
        }
        .feature-item p {
            font-size: 0.88rem;
            color: #64748b;
        }

        /* ===== FAQ ===== */
        .faq-list { max-width: 700px; margin: 0 auto; }
        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        .faq-q {
            padding: 18px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.95rem;
            color: #1e293b;
        }
        .faq-q:hover { background: #f8fafc; }
        .faq-q::after { content: "+"; font-size: 1.3rem; color: #94a3b8; transition: transform 0.2s; }
        .faq-item.open .faq-q::after { transform: rotate(45deg); }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .faq-item.open .faq-a {
            max-height: 200px;
            padding: 0 20px 18px;
        }

        /* ===== PAGE CONTENT (city pages, legal) ===== */
        .page-content {
            max-width: 800px;
            margin: 30px auto;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        .breadcrumb {
            max-width: 800px;
            margin: 20px auto 0;
            padding: 0 40px;
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .breadcrumb a { color: #64748b; text-decoration: none; }
        .breadcrumb a:hover { color: #1e40af; }
        .page-content h1 {
            font-size: 1.9rem;
            color: #1e293b;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .page-content h2 {
            font-size: 1.4rem;
            color: #1e40af;
            margin: 28px 0 14px;
        }
        .page-content h3 {
            font-size: 1.15rem;
            color: #334155;
            margin: 20px 0 10px;
        }
        .page-content h4 {
            font-size: 1.05rem;
            color: #475569;
            margin: 15px 0 8px;
        }
        .page-content p, .page-content li { margin-bottom: 10px; }
        .page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
        .page-content a { color: #2563eb; text-decoration: none; font-weight: 500; }
        .page-content a:hover { text-decoration: underline; }
        .page-content hr { border: none; border-top: 1px solid #e2e8f0; margin: 28px 0; }
        .page-content strong { color: #1e293b; }

        /* Affiliate links - styled as natural text links with a subtle accent */
        .page-content a[href*="tp.st"],
        .page-content a[href*="tpo.mx"] {
            color: #2563eb;
            text-decoration: underline;
            text-decoration-color: rgba(37,99,235,0.3);
            text-underline-offset: 3px;
            font-weight: 600;
            transition: color 0.15s;
        }
        .page-content a[href*="tp.st"]:hover,
        .page-content a[href*="tpo.mx"]:hover {
            color: #1d4ed8;
            text-decoration-color: #1d4ed8;
        }

        /* ===== PRICE DISCLAIMER ===== */
        .price-disclaimer {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 14px 18px;
            margin: 24px 0;
            font-size: 0.82rem;
            color: #64748b;
            line-height: 1.5;
        }

        /* ===== FOOTER ===== */
        .site-footer {
            background: #1e293b;
            color: #94a3b8;
            padding: 40px 24px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.88rem; }
        .footer-links a:hover { color: white; }
        .footer-copy { font-size: 0.85rem; }
        @media (max-width: 600px) {
            .footer-inner { flex-direction: column; text-align: center; }
            .footer-links { flex-direction: column; gap: 8px; }
        }

        /* ===== BLOG LISTING ===== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .blog-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 28px 24px;
            text-decoration: none;
            color: #1e293b;
            transition: all 0.2s;
            display: block;
        }
        .blog-card:hover {
            border-color: #93c5fd;
            box-shadow: 0 4px 20px rgba(30,64,175,0.08);
            transform: translateY(-2px);
        }
        .blog-card h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .blog-card .blog-date {
            font-size: 0.8rem;
            color: #94a3b8;
            margin-bottom: 8px;
        }
        .blog-card .blog-excerpt {
            font-size: 0.88rem;
            color: #64748b;
            line-height: 1.6;
        }
        .blog-card .read-more {
            display: inline-block;
            margin-top: 12px;
            color: #2563eb;
            font-weight: 600;
            font-size: 0.88rem;
        }

        /* Blog post meta */
        .post-meta {
            color: #94a3b8;
            font-size: 0.88rem;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid #e2e8f0;
        }
    