
        /* Reset and Variables */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #521867;
            --primary-dark: #3e1249;
            --text-color: #555;
            --text-dark: #222;
            --border: #eaebed;
            --bg-light: #f8f8fa;
            --container-max: 1440px;
        }

        body {
            font-family: 'FS Albert', sans-serif;
            color: var(--text-color);
            background: #fff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Light.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Light.woff') format('woff');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Regular.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Regular.woff') format('woff');
            font-weight: 400 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'FS Albert';
            src: url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Bold.woff2') format('woff2'),
                url('wp-content/themes/hello-elementor-child/assets/fonts/FSAlbert-Bold.woff') format('woff');
            font-weight: 600 700;
            font-style: normal;
            font-display: swap;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'FS Albert', sans-serif;
            color: var(--primary);
            font-weight: 400;
        }

        h2.section-title {
            font-size: 34px;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .section-title-line {
            width: 50px;
            height: 2px;
            background: var(--primary);
            margin-bottom: 30px;
        }

        p {
            font-size: 15.5px;
            margin-bottom: 20px;
        }

        /* ---------------------------------
           HERO SECTION
           --------------------------------- */
        .ag-hero {
            position: relative;
            height: 650px;
            background: #222 url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
            display: flex;
            align-items: center;
            padding-top: 30px;
        }

        .ag-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: linear-gradient(to right, rgba(82, 24, 103, 0.95) 0%, rgba(82, 24, 103, 0.9) 35%, rgba(82, 24, 103, 0.5) 60%, rgba(82, 24, 103, 0) 80%);
            z-index: 1;
        }

        .ag-hero-inner {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
            color: #fff;
        }

        .ag-nav-breadcrumbs {
            font-size: 14px;
            opacity: 1;
            margin-bottom: 40px;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            justify-content: start;
        }
        .ag-nav-breadcrumbs a{
            text-decoration: none;
            color: #fff;
        }
        
        .ag-nav-breadcrumbs svg{
            height: 16px;
            width: 16px;
            margin-right: 5px;
            margin-left: 5px;            
        }

        .ag-hero-title {
            font-size: 56px;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .ag-hero-subtitle {
            font-family: 'FS Albert', sans-serif;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .ag-hero-text {
            font-size: 15.5px;
            max-width: 500px;
            opacity: 0.9;
            margin-bottom: 50px;
        }

        .ag-hero-features {
            display: flex;
            gap: 40px;
        }

        .ag-hf-item {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 150px;
        }

        .ag-hf-icon {
            width: 26px;
            height: 26px;
            fill: none;
            stroke: #fff;
            stroke-width: 1.5;
            filter: brightness(0) invert(1);
        }

        .ag-hf-text {
            font-size: 14px;
            line-height: 1.4;
            opacity: 0.9;
        }

        /* ---------------------------------
           IN-PAGE NAVIGATION
           --------------------------------- */
        .ag-sticky-nav {
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 100;
        }

        .ag-nav-menu {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 40px;
        }

        .ag-nav-menu a {
            display: block;
            padding: 20px 0;
            color: var(--text-dark);
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .ag-nav-menu a:hover,
        .ag-nav-menu a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        /* ---------------------------------
           GENERIC WRAPPER
           --------------------------------- */
        .ag-section {
            padding: 40px 0;
        }

        .ag-section-light {
            background: var(--bg-light);
        }

        /* ---------------------------------
           SECTION 1: Legacy
           --------------------------------- */
        .legacy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .legacy-img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        /* ---------------------------------
           SECTION 2: Access & Privacy
           --------------------------------- */
        .lifestyle-card {
            background: var(--bg-light);
            border-radius: 4px;
            padding: 40px;
            margin-top: 30px;
        }

        .access-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .access-card {
            padding: 30px 35px;
            border-right: 1px solid var(--border);
        }

        .access-card:last-child {
            border-right: none;
        }

        .acc-icon {
            width: 32px;
            height: 32px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 1.5;
            margin-bottom: 20px;
            filter: invert(13%) sepia(60%) saturate(2000%) hue-rotate(270deg) brightness(80%) contrast(110%);
        }

        .acc-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .acc-text {
            font-size: 14.5px;
            margin: 0;
        }

        /* ---------------------------------
           SECTION 3: Key Areas
           --------------------------------- */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .area-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            text-decoration: none !important;
            color: inherit;

        }

        .area-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .area-content {
            padding: 25px;
        }

        .area-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .area-desc {
            font-size: 14.5px;
            margin: 0;
        }

        /* ---------------------------------
           SECTION 4: Market Position
           --------------------------------- */
        .market-grid {
            display: grid;
            grid-template-columns: 30% 1fr;
            gap: 50px;
            align-items: center;
        }

        .market-info-box {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 4px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .mi-col {
            padding: 0 30px;
            border-right: 1px solid var(--border);
        }

        .mi-col:first-child {
            padding-left: 0;
        }

        .mi-col:last-child {
            border-right: none;
        }

        .mi-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .mi-header svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            fill: none;
            stroke-width: 1.5;
        }

        .mi-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--text-dark);
        }

        .mi-stat {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .mi-stat strong {
            display: block;
            font-size: 18px;
            color: var(--text-dark);
            margin-top: 5px;
        }

        /* ---------------------------------
           SECTION 5: Featured Properties
           --------------------------------- */
        .fp-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }

        .fp-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none !important;
            font-size: 15px;
            padding-bottom: 10px;
        }

        .props-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .prop-card {
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #fff;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: box-shadow 0.3s;
            text-decoration: none !important;
            color: inherit !important;
        }

        .prop-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
        }

        .pc-img-wrap {
            position: relative;
            height: 220px;
        }

        .pc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pc-price {
            position: absolute;
            bottom: 0;
            right: 10px;
            background: #fff;
            padding: 8px 16px;
            font-family: 'FS Albert', sans-serif;
            font-weight: 600;
            font-size: 18px;
            color: var(--text-dark);
        }

        .pc-body {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .pc-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 20px;
            font-weight: 400;
            margin-bottom: 10px;
            line-height: 1.3;
            color: var(--text-dark);
        }

        .pc-loc {
            font-size: 13px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .pc-specs {
            margin-top: auto;
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: var(--text-color);
            border-top: 1px solid var(--border);
            padding-top: 15px;
        }

        .pc-specs span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ---------------------------------
           SECTION 6: Local Expert
           --------------------------------- */
        .expert-section {
            padding: 40px;
            background: #f5f3f7;
            border-radius: 12px;
            margin-bottom: 40px;
        }

        .expert-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .expert-left {
            flex: 1;
            max-width: 320px;
        }

        .expert-section-title {
            font-family: 'FS Albert', sans-serif;
            font-size: 32px;
            font-weight: 400;
            color: var(--primary);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .expert-section-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: var(--primary);
            margin-top: 16px;
        }

        .expert-section-desc {
            font-size: 15px;
            color: var(--text-color);
            line-height: 1.7;
        }

        .expert-center {
            flex-shrink: 0;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .expert-img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            display: block;
            border: 3px solid #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .expert-name {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary);
            margin: 0 0 4px;
        }

        .expert-role {
            font-size: 13px;
            color: var(--text-color);
            margin-bottom: 12px;
        }

        .expert-contact {
            font-size: 13px;
            color: var(--text-color);
        }

        .expert-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
        }

        .expert-contact-item svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 2;
            flex-shrink: 0;
        }

        .expert-right {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .expert-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none !important;
            transition: all 0.2s;
            border: 1px solid var(--primary);
            background: #fff;
            color: var(--primary);
        }

        .expert-btn svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .expert-btn:hover {
            background: var(--primary);
            color: #fff;
        }

        .expert-box {
            background: var(--bg-light);
            border-radius: 4px;
            padding: 40px;
            display: grid;
            grid-template-columns: 30% 1fr auto;
            gap: 50px;
            align-items: center;
        }

        .expert-intro .section-title {
            color: var(--text-dark);
            font-size: 26px;
        }

        .expert-intro p {
            margin: 0;
            font-size: 14.5px;
        }

        .expert-profile {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .ex-img {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        .ag-hf-icon,
        .acc-icon {
            object-fit: contain;
        }

        .ex-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .ex-role {
            font-size: 13px;
            color: var(--text-color);
            margin-bottom: 8px;
        }

        .ex-contact {
            font-size: 13px;
            color: var(--text-color);
            text-decoration: none !important;
            display: block;
            line-height: 1.6;
        }

        .ex-contact.email {
            color: var(--primary);
        }

        .expert-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none !important;
            border-radius: 2px;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
        }

        .btn-outline svg {
            width: 15px;
            height: 15px;
            fill: currentColor;
            stroke: none;
        }

        /* ---------------------------------
           FINAL CTA
           --------------------------------- */

        .final-cta-inner {
            background: var(--primary) url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center / cover;
            position: relative;
            padding: 80px 60px;
            text-align: center;
            color: #fff;
            border-radius: 4px;
            overflow: hidden;
        }

        .final-cta-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(82, 24, 103, 0.85);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 {
            font-size: 35px;
            color: #fff;
            margin-bottom: 30px;
        }

        .btn-solid {
            display: inline-flex;
            background: #fff;
            color: var(--primary);
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 400;
            text-decoration: none !important;
            border-radius: 2px;
            transition: all 0.2s;
        }

        .btn-solid:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        /* ---------------------------------
           RESPONSIVE
           --------------------------------- */
        @media (max-width: 1024px) {
            .ag-hero::before {
                width: 55%;
                background: linear-gradient(to right,
                    rgba(82, 24, 103, 0.98) 0%,
                    rgba(82, 24, 103, 0.95) 40%,
                    rgba(82, 24, 103, 0.6) 70%,
                    rgba(82, 24, 103, 0.1) 90%,
                    transparent 100%);
            }

            .legacy-grid,
            .expert-box {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .expert-inner {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .expert-left {
                max-width: 100%;
                text-align: center;
            }

            .expert-section-title::after {
                margin-left: auto;
                margin-right: auto;
            }

            .expert-right {
                flex-wrap: wrap;
                justify-content: center;
            }

            .market-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .access-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .access-card {
                border-right: 1px solid var(--border);
                border-bottom: none;
            }

            .access-card:nth-child(2n) {
                border-right: none;
            }

            .access-card:nth-child(1),
            .access-card:nth-child(2) {
                border-bottom: 1px solid var(--border);
            }

            .areas-grid,
            .props-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .fp-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .ag-nav-menu {
                flex-wrap: wrap;
                gap: 10px;
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            /* Hero */
            .ag-hero {
                height: auto;
                min-height: 0;
                padding: 80px 0 32px;
            }

            .ag-hero::before {
                width: 75%;
                background: linear-gradient(to right,
                    rgba(82, 24, 103, 0.98) 0%,
                    rgba(82, 24, 103, 0.95) 45%,
                    rgba(82, 24, 103, 0.65) 70%,
                    rgba(82, 24, 103, 0.15) 90%,
                    transparent 100%);
            }

            .ag-hero-inner {
                padding: 0 16px;
            }

            .ag-nav-breadcrumbs {
                font-size: 11px;
                flex-wrap: wrap;
                margin-bottom: 16px;
            }

            .ag-hero-title {
                font-size: 26px;
                margin-bottom: 10px;
            }

            .ag-hero-subtitle {
                font-size: 15px;
                margin-bottom: 12px;
            }

            .ag-hero-text {
                display: none;
            }

            .ag-hero-features {
                gap: 20px;
                flex-wrap: wrap;
            }

            .ag-hf-icon {
                width: 25px;
                height: 25px;
            }

            .ag-hf-text {
                font-size: 12px;
            }
            .lifestyle-card {
                padding: 20px 16px;
                margin-top: 16px;
            }

            h2.section-title {
                font-size: 22px;
                margin-bottom: 16px;
            }

            .access-grid {
                grid-template-columns: 1fr;
            }

            .access-card {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding: 20px 0;
            }

            .access-card:last-child {
                border-bottom: none;
            }

            /* Market */
            .market-info-box {
                grid-template-columns: 1fr;
                padding: 20px 16px;
            }

            .mi-col {
                padding: 16px 0;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .mi-col:last-child {
                border-bottom: none;
            }

            .mi-title {
                font-size: 16px;
            }

            /* Nav */
            .ag-section {
                padding: 28px 0;
            }

            .ag-nav-menu {
                justify-content: flex-start;
                gap: 8px;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 2px;
            }

            .ag-nav-menu a {
                padding: 12px 0;
                font-size: 13px;
                white-space: nowrap;
            }

            /* Grids */
            .areas-grid,
            .props-grid {
                grid-template-columns: 1fr;
            }

            .expert-actions {
                flex-wrap: wrap;
                justify-content: center;
            }

            .expert-section {
                padding: 24px 18px;
                border-radius: 8px;
            }

            .expert-inner {
                gap: 24px;
            }

            .expert-section-title {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .expert-center {
                flex-direction: column;
                align-items: center;
                gap: 12px;
                text-align: center;
            }

            .expert-img {
                width: 90px;
                height: 90px;
            }

            .expert-right {
                width: 100%;
                gap: 8px;
            }

            .expert-btn {
                flex: 1;
                padding: 10px 16px;
                font-size: 13px;
            }

            .expert-box {
                padding: 20px 16px;
            }

            /* Final CTA */
            .final-cta-inner {
                padding: 40px 20px;
                border-radius: 0;
            }

            .cta-inner h2 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .btn-solid {
                padding: 12px 28px;
                font-size: 14px;
            }
        }