:root{--legacy-0f2537:#0f2537;--legacy-222222:#222222;--legacy-555555:#555555;--legacy-666666:#666666;--legacy-c5a059:#c5a059}
:root {
            --navy: var(--legacy-0f2537, #0F2537);
            --gold: var(--legacy-c5a059, #C5A059);
            --dark-grey: var(--legacy-222222, #222222);
            --light-bg: var(--color-surface-alt, #F4F6F8);
            --border-color: var(--color-primary-subtle, #E2E8F0);
        }
        body { 
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
            line-height: 1.7; 
            color: var(--dark-grey); 
            margin: 0; 
            padding: 0; 
            scroll-behavior: smooth;
            background-color: var(--color-background, #FFFFFF);
        }
        .container { width: 92%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        h1, h2, h3, h4 { color: var(--navy); font-weight: 700; letter-spacing: -0.5px; }
        
        .btn { 
            background: var(--navy); 
            color: white; 
            padding: 18px 40px; 
            text-decoration: none; 
            border-radius:var(--radius-sm, 4px); 
            font-weight: bold; 
            display: inline-block; 
            transition: all 0.3s ease; 
            border: 2px solid var(--navy);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .btn:hover { 
            background: transparent; 
            color: var(--navy); 
            transform: translateY(-3px); 
            box-shadow: 0 10px 20px rgba(15,37,55,0.1);
        }
        
        /* Hero Section */
        .hero { background: linear-gradient(135deg, var(--color-background, #FFFFFF) 0%, var(--light-bg) 100%); padding: 100px 0; display: flex; align-items: center; }
        .hero-flex { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
        .hero-left { flex: 1.2; min-width: 320px; }
        .hero-right { flex: 0.8; min-width: 320px; }
        .hero-right img { width: 100%; border-radius:var(--radius-sm, 8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .hero h1 { font-size: 3.2rem; margin-bottom: 25px; line-height: 1.15; color: var(--navy); }
        .hero p { font-size: 1.15rem; color: var(--legacy-555555, #555); margin-bottom: 30px; }

        /* Sections */
        .section-padding { padding: 100px 0; }
        .grey-bg { background: var(--light-bg); }
        .section-title { text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
        .section-title h2 { font-size: 2.4rem; margin-bottom: 20px; }
        .section-title p { font-size: 1.1rem; color: var(--legacy-666666, #666); }
        
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
        .card { background: white; padding: 40px; border-radius:var(--radius-sm, 6px); box-shadow: 0 4px 20px rgba(0,0,0,0.02); border-left: 5px solid var(--gold); transition: transform 0.3s ease; }
        .card:hover { transform: translateY(-5px); }
        .card h3 { font-size: 1.4rem; margin-top: 0; margin-bottom: 15px; }
        
        /* Services List */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
        .service-item { background: white; padding: 20px; border: 1px solid var(--border-color); border-radius:var(--radius-sm, 4px); text-align: center; font-weight: 600; transition: all 0.3s ease; }
        .service-item:hover { border-color: var(--navy); background-color: var(--light-bg); }
        .service-item a { text-decoration: none; color: var(--navy); display: block; }

        /* Locations Section */
        .location-tags { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 40px; }
        .location-btn { background: white; border: 1px solid var(--border-color); padding: 12px 25px; border-radius: 30px; font-weight: 500; color: var(--navy); transition: all 0.3s; text-decoration: none; }
        .location-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

        /* FAQ */
        .faq-container { max-width: 850px; margin: 40px auto 0 auto; }
        .faq-item { margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
        .faq-item h4 { font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
        .faq-item p { color: var(--legacy-555555, #555); margin: 0; }

        @media (max-width: 992px) {
            .hero-flex { flex-direction: column-reverse; text-align: center; }
            .hero h1 { font-size: 2.5rem; }
            .section-padding { padding: 70px 0; }
        }