    
        :root {
            --primary-dark: #0a0a0a;
            --secondary-dark: #161616;
            --text-color: #333;
            --gold-accent: #D4AF37;
            --glass-bg: rgba(255, 255, 255, 0.98);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #fff;
            color: var(--text-color);
            line-height: 1.6;
        }
        section {
            padding: 100px 0;
            border-bottom: 1px solid #f9f9f9;
        }

        h1,
        h2,
        h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .text-center {
            text-align: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            height: 90px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
        }

        .nav-center {
            display: flex;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            padding: 15px 0;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--gold-accent);
        }

        .arrow-down {
            font-size: 0.6rem;
            opacity: 0.5;
        }

        .dropdown {
            position: absolute;
            top: 100%;
            left: -20px;
            width: 220px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            list-style: none;
            border-top: 3px solid var(--gold-accent);
            z-index: 2100;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 25px;
            font-size: 0.85rem;
            color: #555;
            transition: 0.2s;
        }

        .dropdown li a:hover {
            background: #f9f9f9;
            color: var(--primary-dark);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 2100;
        }
        .hero-split-screen {
            display: flex;
            min-height: 85vh;
            height: auto;

            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .hero-left {
            width: 50%;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .hero-right {
            width: 50%;
            min-height: 100%;
            position: relative;
            background: #f4f4f4;
        }

        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-eyebrow {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-accent);
            margin-bottom: 15px;
            font-weight: 700;
            display: block;
        }

        .hero-left h1 {
            font-size: clamp(3rem, 4.5vw, 4.5rem);
            line-height: 1.05;
            margin-bottom: 20px;
            color: #000;
        }

        .stat-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .stat-item h3 {
            font-size: 1.8rem;
            margin: 0;
            line-height: 1;
        }

        .stat-item p {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #777;
            margin-top: 5px;
        }
        .btn-call-hero {
            background-color: var(--primary-dark);
            color: #fff;
            padding: 18px 40px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-call-hero:hover {
            background-color: var(--gold-accent);
            color: #000;
        }

        .btn-outline {
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
            padding: 15px 30px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: #fff;
        }
        .prob-sol-section {
            display: flex;
            flex-wrap: wrap;
        }

        .prob-col {
            flex: 1;
            padding: 80px 50px;
            min-width: 300px;
        }

        .prob-dark {
            background: var(--primary-dark);
            color: #fff;
        }

        .prob-light {
            background: #fdfdfd;
            color: var(--text-color);
            border: 1px solid #eee;
        }

        .keyword-highlight {
            color: var(--gold-accent);
            font-weight: 700;
        }

        .why-us-section {
            background: linear-gradient(135deg, #e0e0e0 0%, #f7f7f7 100%);
            border-top: 1px solid #d4d4d4;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .why-icon {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            display: block;
        }

        .doc-section {
            background: var(--primary-dark);
            color: #fff;
            padding: 100px 0;
        }

        .doc-flex {
            display: flex;
            gap: 80px;
            align-items: center;
        }

        .doc-img {
            flex: 1;
            position: relative;
        }

        .doc-img img {
            width: 100%;
            border-radius: 4px;
            filter: grayscale(20%);
            display: block;
        }

        .doc-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gold-accent);
            color: #000;
            padding: 15px 25px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .doc-text {
            flex: 1;
        }

        .doc-text h2 {
            color: #fff;
            font-size: 3rem;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .credential-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .cred-item {
            border-left: 2px solid var(--gold-accent);
            padding-left: 15px;
        }

        .cred-item strong {
            display: block;
            color: #fff;
            font-size: 1.2rem;
        }

        .cred-item span {
            color: #888;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .process-section {
            background: #fff;
        }

        .steps-flex {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .step-item {
            flex: 1;
            min-width: 250px;
            position: relative;
            border-left: 1px solid #eee;
            padding-left: 30px;
        }

        .step-num {
            font-family: 'Playfair Display';
            font-size: 3rem;
            color: var(--gold-accent);
            display: block;
            margin-bottom: 10px;
            line-height: 1;
        }

        .step-item h4 {
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-item p {
            color: #666;
            font-size: 0.9rem;
        }

        .pricing-section {
            background: #fafafa;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background: #fff;
            padding: 40px;
            text-align: center;
            border: 1px solid #eee;
            transition: 0.3s;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .price-card.featured {
            border: 2px solid var(--gold-accent);
            transform: scale(1.05);
            z-index: 2;
        }

        .price-tag {
            font-size: 2rem;
            font-family: 'Playfair Display';
            color: var(--primary-dark);
            display: block;
            margin: 20px 0;
        }

        .price-list {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .price-list li {
            border-bottom: 1px solid #f9f9f9;
            padding: 10px 0;
            font-size: 0.9rem;
            color: #555;
        }

        .reviews-section {
            background: #fff;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            padding: 40px;
            border: 1px solid #eee;
            background: #fff;
            transition: 0.3s;
        }

        .review-card:hover {
            border-color: var(--gold-accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stars {
            color: var(--gold-accent);
            margin-bottom: 15px;
            letter-spacing: 3px;
        }

        .review-author {
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--primary-dark);
            margin-top: 15px;
            display: block;
        }

        .ba-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .ba-item {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .ba-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .ba-item:hover img {
            transform: scale(1.05);
        }

        .ba-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: rgba(10, 10, 10, 0.9);
            color: white;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .ba-item:hover .ba-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-section {
            background: #fafafa;
        }

        details {
            border-bottom: 1px solid #ddd;
            padding: 25px 0;
            cursor: pointer;
        }

        summary {
            font-family: 'Playfair Display';
            font-size: 1.2rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            outline: none;
        }

        summary::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--gold-accent);
        }

        details[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            margin-top: 15px;
            color: #666;
        }

        .map-section {
            padding: 0;
            height: 450px;
            width: 100%;
            position: relative;
        }

        .map-overlay {
            position: absolute;
            top: 50px;
            left: 50px;
            background: #fff;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            border-left: 4px solid var(--gold-accent);
        }

        footer {
            background: var(--primary-dark);
            color: #555;
            padding: 80px 20px 40px;
            text-align: center;
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 2100;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
            z-index: 1900;
            max-height: 80vh;
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: flex;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-nav a {
            display: block;
            padding: 18px 30px;
            border-bottom: 1px solid #f5f5f5;
            color: #333;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .mobile-nav .sub-header {
            background: #f9f9f9;
            color: #888;
            font-size: 0.7rem;
            padding: 10px 30px;
            letter-spacing: 2px;
            font-weight: 700;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-top: 1px solid #eee;
            padding: 15px;
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .sticky-btn {
            background: var(--gold-accent);
            color: #000;
            width: 100%;
            text-align: center;
            padding: 15px;
            font-weight: 900;
            font-size: 1rem;
            border-radius: 4px;
            text-transform: uppercase;
        }
        @media (max-width: 1024px) {
            .hero-split-screen {
                flex-direction: column;
                height: auto;
            }

            .hero-left,
            .hero-right {
                width: 100%;
            }

            .hero-right {
                height: 350px;
            }

            .hero-left {
                padding: 50px 20px;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 2.8rem;
            }

            .nav-center,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .sticky-bar {
                display: flex;
            }

            .review-grid,
            .ba-grid,
            .why-grid,
            .pricing-grid,
            .doc-flex {
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .doc-img {
                order: -1;
            }

            .price-card.featured {
                transform: scale(1);
            }

            .ba-item {
                height: 350px;
            }

            .ba-overlay {
                opacity: 1 !important;
                transform: translateY(0) !important;
                background: rgba(0, 0, 0, 0.7);
            }

            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                max-width: none;
                border-left: none;
                border-bottom: 4px solid var(--gold-accent);
            }

            .stat-row {
                justify-content: center;
            }

            .hero-left div[style*="display: flex"] {
                justify-content: center;
            }
        }