        :root {
            --primary-gold: #c5a880;
            --remax-red: #e11b22;
            --remax-blue: #003da5;
            --text-dark: #2d3748;
            --bg-light: #f7fafc;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fff;
        }

        /* --- Header & Navigation --- */
        header {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 20px; /* Reduced vertical padding slightly to balance the increased logo size */
        }

        .logo-area {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 85px; /* Increased height to make the custom script signature stand out clearly */
            width: auto;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        nav ul li a:hover {
            color: var(--primary-gold);
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-color: #fff;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-family: 'Cinzel', serif;
            color: #fff;
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }

        .hero p {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        }

        .hero-btn {
            background-color: var(--primary-gold);
            color: #fff;
            padding: 12px 35px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.2s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .hero-btn:hover {
            background-color: #b3956b;
        }

        /* --- Main Content Section --- */
        .container {
            max-width: 1100px;
            margin: 60px auto;
            padding: 0 20px;
        }

        .profile-card {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }

        @media(min-width: 768px) {
            .profile-card {
                grid-template-columns: 320px 1fr;
            }
        }

        .profile-img-container {
            text-align: center;
        }

        .profile-img-container img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 8px;
            border: 4px solid #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .profile-info h2 {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .profile-info .title-tag {
            color: var(--primary-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: block;
        }

        .profile-info p {
            color: #4a5568;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .contact-details {
            border-top: 1px solid #edf2f7;
            padding-top: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .contact-item strong {
            width: 80px;
            color: #718096;
        }

        .contact-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .contact-item a:hover {
            color: var(--remax-blue);
        }

        /* --- MLS / Property Placeholder Section --- */
        .listings-placeholder {
            background-color: var(--bg-light);
            border: 2px dashed #cbd5e1;
            border-radius: 8px;
            padding: 50px 20px;
            text-align: center;
            margin-top: 50px;
        }

        .listings-placeholder h3 {
            font-family: 'Cinzel', serif;
            margin-bottom: 10px;
            color: #4a5568;
        }

        /* --- Footer Section --- */
        footer {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 40px 20px;
            margin-top: 80px;
            font-size: 0.9rem;
        }

        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            text-align: center;
        }

        @media(min-width: 768px) {
            .footer-content {
                flex-direction: row;
                text-align: left;
            }
        }

        .remax-branding {
            color: #fff;
        }

        .remax-brand-text {
            font-weight: 700;
            letter-spacing: 1px;
        }

        .remax-brand-text span:nth-child(1) { color: var(--remax-red); }
        .remax-brand-text span:nth-child(2) { color: #fff; }
        .remax-brand-text span:nth-child(3) { color: var(--remax-blue); }

        .office-info {
            font-size: 0.8rem;
            color: #ffffff;
            margin-top: 5px;
        }

        .fair-housing {
            font-size: 0.75rem;
            max-width: 500px;
            color: #ffffff;
            line-height: 1.4;
        }