/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: #1a2744;
    line-height: 1.6;
    background: #fff;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BRAND COLORS =====
   Primary Blue: #0066CC (from business card text)
   Green Accent: #2B8A3E (from GRE logo)
   Dark Navy:    #1a2744 (text/headers)
   Light Green:  #e8f5e9 (backgrounds)
   Light Blue:   #e3f2fd (backgrounds)
===== */

/* ===== TOP BAR ===== */
.top-bar {
    background: #0066CC;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-phone {
    color: #fff;
    font-weight: 600;
    background: #2B8A3E;
    padding: 4px 14px;
    border-radius: 4px;
}
.top-phone:hover { background: #237032; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066CC;
    letter-spacing: 3px;
    line-height: 1;
}
.logo-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #2B8A3E;
    font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}
.nav a:hover { color: #0066CC; }
.nav-cta {
    background: #2B8A3E !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
}
.nav-cta:hover { background: #237032 !important; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a2744;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #0d2a5c 50%, #0066CC 100%);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><rect fill="%230d2a5c" width="1440" height="800"/><circle cx="200" cy="400" r="300" fill="%23ffffff08"/><circle cx="1200" cy="200" r="400" fill="%23ffffff05"/><circle cx="700" cy="600" r="250" fill="%23ffffff06"/></svg>') center/cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
    padding: 60px 0;
}
.hero-tag {
    display: inline-block;
    background: rgba(43, 138, 62, 0.25);
    border: 1px solid rgba(43, 138, 62, 0.5);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #6dd58c;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}
.highlight { color: #6dd58c; }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #2B8A3E;
    color: #fff;
}
.btn-primary:hover {
    background: #237032;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43,138,62,0.4);
}
.btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.btn-full { width: 100%; text-align: center; }

/* ===== HERO TRUST ===== */
.hero-trust {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-item { text-align: center; }
.trust-item strong {
    display: block;
    font-size: 1.3rem;
    color: #6dd58c;
}
.trust-item span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

/* ===== SECTIONS ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: #1a2744;
}
.section-sub {
    text-align: center;
    color: #666;
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.services { padding: 90px 0; background: #f0f7ff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-top-color: #2B8A3E;
}
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a2744;
}
.service-card p {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.service-card a {
    color: #0066CC;
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card a:hover { color: #2B8A3E; }

/* ===== NEIGHBORHOODS ===== */
.neighborhoods { padding: 90px 0; }
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.neighborhood-card {
    background: #f0f7ff;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s;
}
.neighborhood-card:hover {
    border-color: #0066CC;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,102,204,0.12);
    transform: translateY(-4px);
}
.neighborhood-card h3 {
    font-size: 1.05rem;
    color: #1a2744;
    margin-bottom: 4px;
}
.neighborhood-card p {
    font-size: 0.78rem;
    color: #888;
}

/* ===== ABOUT ===== */
.about { padding: 90px 0; background: #f0f7ff; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2744;
    margin-bottom: 8px;
}
.about-text h3 {
    color: #0066CC;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.about-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.about-list {
    margin: 20px 0 30px;
}
.about-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #444;
    font-size: 0.92rem;
}
.about-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #2B8A3E;
    font-weight: 700;
}
.about-image img {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-placeholder {
    background: linear-gradient(135deg, #0d2a5c, #0066CC);
    border-radius: 16px;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 400px;
    justify-content: center;
    align-items: center;
}
.about-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}
.about-placeholder .small {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 90px 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 32px;
    border-left: 4px solid #2B8A3E;
}
.stars {
    color: #f0c040;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: #555;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}
.testimonial-card strong {
    color: #1a2744;
    font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact { padding: 90px 0; background: #0d2a5c; color: #fff; }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 8px;
}
.contact-info h3 {
    color: #6dd58c;
    font-weight: 500;
    margin-bottom: 16px;
}
.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    font-size: 0.95rem;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item strong {
    display: block;
    color: #6dd58c;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-item a { color: #8ecfff; }
.contact-item a:hover { color: #fff; }
.contact-item span { color: rgba(255,255,255,0.7); }
.contact-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px;
}
.contact-form-wrap h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: #fff;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 13px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}
.contact-form select { color: rgba(255,255,255,0.6); }
.contact-form select option { color: #333; background: #fff; }

/* ===== FOOTER ===== */
.footer {
    background: #091a36;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: 0.85rem; }
.footer-col li a:hover { color: #6dd58c; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        gap: 16px;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 70vh; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; }
    .hero-trust { gap: 24px; }
    .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-trust { flex-direction: column; gap: 12px; }
}

/* ===== BLOG PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, #0d2a5c, #0066CC);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    padding: 60px 0;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.blog-card .tag {
    display: inline-block;
    background: rgba(43,138,62,0.12);
    color: #2B8A3E;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-card h2 {
    font-size: 1.2rem;
    color: #1a2744;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h2 a:hover { color: #0066CC; }
.blog-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-card .read-more {
    color: #0066CC;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ===== NEIGHBORHOOD PAGE ===== */
.neighborhood-hero {
    background: linear-gradient(135deg, #0d2a5c, #0066CC);
    padding: 80px 0 60px;
    color: #fff;
}
.neighborhood-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.neighborhood-hero p { color: rgba(255,255,255,0.7); }
.neighborhood-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}
.neighborhood-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a2744;
    margin: 36px 0 14px;
}
.neighborhood-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.neighborhood-content ul {
    margin: 12px 0 20px 20px;
    list-style: disc;
}
.neighborhood-content li {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.cta-box {
    background: linear-gradient(135deg, #0d2a5c, #0066CC);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: #fff;
    margin: 50px 0;
}
.cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.cta-box p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.82rem;
    color: #888;
}
.breadcrumb a { color: #6dd58c; }
.breadcrumb a:hover { color: #fff; }

/* ===== AGENT SIDEBAR CARD ===== */
.agent-card {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f5e9 100%);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    border: 2px solid #e3f2fd;
    position: sticky;
    top: 100px;
}
.agent-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 4px solid #0066CC;
    box-shadow: 0 4px 20px rgba(0,102,204,0.2);
}
.agent-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a2744;
    margin-bottom: 4px;
}
.agent-card .agent-title {
    color: #0066CC;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.agent-card .agent-company {
    color: #2B8A3E;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.agent-card .agent-phone {
    display: block;
    background: #2B8A3E;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
    transition: all 0.3s;
}
.agent-card .agent-phone:hover {
    background: #237032;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(43,138,62,0.4);
}
.agent-card .agent-email {
    display: block;
    color: #0066CC;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.agent-card .agent-email:hover { color: #004a99; }
.agent-card .agent-office {
    color: #888;
    font-size: 0.78rem;
    line-height: 1.5;
}
.agent-card .agent-badge {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    color: #0066CC;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* ===== CONTENT WITH SIDEBAR LAYOUT ===== */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.content-main {
    min-width: 0;
}
@media (max-width: 900px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    .agent-card { position: static; }
}

/* ===== FAQ STYLES ===== */
.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid #0066CC;
    transition: all 0.3s;
}
.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left-color: #2B8A3E;
}
.faq-item h3, .faq-item .faq-question {
    font-size: 1.05rem;
    color: #1a2744;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}
.faq-item p, .faq-item .faq-answer {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== MARKET REPORT STYLES ===== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.stat-card {
    background: #f0f7ff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    border-top: 3px solid #0066CC;
}
.stat-card .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0066CC;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}
.data-table th {
    background: #0066CC;
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.data-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    color: #555;
}
.data-table tr:hover { background: #f0f7ff; }
.data-table tr:nth-child(even) { background: #fafbfc; }

/* ===== COMMUNITY PAGE STYLES ===== */
.community-hero {
    background: linear-gradient(135deg, #0d2a5c 0%, #0066CC 60%, #2B8A3E 100%);
    padding: 80px 0 60px;
    color: #fff;
}
.community-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.community-hero p { color: rgba(255,255,255,0.7); }
.community-neighborhoods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin: 20px 0;
}
.community-neighborhood-card {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.community-neighborhood-card:hover {
    border-color: #0066CC;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,102,204,0.1);
}
.community-neighborhood-card h4 {
    color: #1a2744;
    margin-bottom: 6px;
    font-size: 1rem;
}
.community-neighborhood-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== ARTICLE/BLOG POST STYLES ===== */
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 24px;
}
.article-meta img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0066CC;
}
.article-meta-text { display: flex; flex-direction: column; }
.article-meta-text strong { color: #1a2744; font-size: 0.95rem; }
.article-meta-text span { color: #888; font-size: 0.82rem; }
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a2744;
    margin: 32px 0 14px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.article-content h2:first-child { border-top: none; padding-top: 0; }
.article-content h3 {
    font-size: 1.15rem;
    color: #0066CC;
    margin: 20px 0 10px;
}
.article-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.article-content ul, .article-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}
.article-content ol { list-style: decimal; }
.article-content li {
    color: #555;
    font-size: 0.93rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
.article-content a { color: #0066CC; font-weight: 500; }
.article-content a:hover { color: #2B8A3E; text-decoration: underline; }
.article-content blockquote {
    background: #f0f7ff;
    border-left: 4px solid #0066CC;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #444;
}

/* ===== SERVICE PAGE FEATURES LIST ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}
.feature-item:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
}
.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0066CC, #2B8A3E);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}
.feature-text h4 {
    color: #1a2744;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.feature-text p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== INLINE AGENT BANNER (for pages without sidebar) ===== */
.agent-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #0d2a5c, #0066CC);
    border-radius: 16px;
    padding: 28px 32px;
    color: #fff;
    margin: 40px 0;
}
.agent-banner img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6dd58c;
    flex-shrink: 0;
}
.agent-banner-text { flex: 1; }
.agent-banner-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 4px;
}
.agent-banner-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 0;
}
.agent-banner .btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 0.9rem;
}
@media (max-width: 700px) {
    .agent-banner {
        flex-direction: column;
        text-align: center;
    }
    .agent-banner .btn { width: 100%; text-align: center; }
}

/* ===== RESOURCE/COMPARISON TABLE ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.88rem;
}
.compare-table th {
    background: #0066CC;
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    top: 60px;
    z-index: 10;
}
.compare-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    color: #555;
}
.compare-table tr:hover { background: #f0f7ff; }
.compare-table tr:nth-child(even) { background: #fafbfc; }
@media (max-width: 768px) {
    .compare-table { font-size: 0.75rem; }
    .compare-table th, .compare-table td { padding: 6px 8px; }
}

/* ===== FAIR HOUSING & COMPLIANCE ===== */
.compliance-bar {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 24px 0;
    text-align: center;
}
.compliance-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.compliance-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.78rem;
    color: #495057;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.compliance-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.compliance-text {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.compliance-text a {
    color: #0066CC;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .compliance-badges { gap: 12px; }
    .compliance-badge { font-size: 0.72rem; padding: 6px 12px; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar, .header, .footer, .cta-box, .agent-card, .agent-banner { display: none; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    body { color: #000; }
    a { color: #000; text-decoration: underline; }
}
