:root {
    --primary-teal: #2B7A78;
    --primary-dark: #1F5654;
    --primary-light: #3D9B98;
    --accent-warm: #E8956F;
    --neutral-light: #F5F5F5;
    --neutral-medium: #E0E0E0;
    --text-dark: #2C3E50;
    --text-medium: #546E7A;
    --white: #FFFFFF;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a { color: white; text-decoration: none; margin-left: 1.5rem; }

nav {
    background: white;
    border-bottom: 1px solid var(--neutral-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-teal);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
}

.content-section {
    padding: 4rem 2rem;
    background: white;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-teal);
    margin: 2.5rem 0 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content-section a {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
}

.content-section a:hover {
    color: var(--primary-dark);
}

footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .footer-content { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--accent-warm);
    color: white;
}
.btn-primary:hover { background: #D97D5A; transform: translateY(-2px); }
.btn-secondary {
    background: var(--primary-teal);
    color: white;
}
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Mobile navigation */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--neutral-medium);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
@media (max-width: 968px) {
    .mobile-nav-toggle { display: inline-block; }
    .nav-container { position: relative; }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--neutral-medium);
    }
    body.nav-open .nav-links { display: flex; }
}

/* =========================================================
   Consolidated page-specific styles (moved from inline <style> blocks)
   ========================================================= */
/* Source: 404.html (and 1 page(s)) */
.error-content {
            text-align: center;
            padding: 6rem 2rem;
        }
        .error-content h1 {
            font-family: var(--font-heading);
            font-size: 6rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }
        .error-content h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }
        .error-links {
            margin-top: 3rem;
        }
        .error-links a {
            display: inline-block;
            background: var(--primary-teal);
            color: white;
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin: 0.5rem;
        }
        .error-links a:hover {
            background: var(--primary-dark);
        }

/* Source: about.html (and 1 page(s)) */
:root {
            --primary-teal: #2B7A78;
            --primary-dark: #1F5654;
            --primary-light: #3D9B98;
            --accent-warm: #E8956F;
            --neutral-light: #F5F5F5;
            --neutral-medium: #E0E0E0;
            --text-dark: #2C3E50;
            --text-medium: #546E7A;
            --white: #FFFFFF;
            --font-heading: 'Merriweather', serif;
            --font-body: 'Open Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
        }

        /* Navigation - same as homepage */
        .top-bar {
            background: var(--primary-dark);
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
        }

        nav {
            background: white;
            border-bottom: 1px solid var(--neutral-medium);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
        }

        .logo-text h1 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-teal);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.85rem;
            color: var(--text-medium);
            margin-top: 0.25rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-teal);
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
        }

        /* Content Section */
        .content-section {
            padding: 4rem 2rem;
            background: white;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .content-section p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .content-section h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-teal);
            margin: 2.5rem 0 1.5rem;
        }

        /* Staff List */
        .staff-list {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .staff-list h2 {
            margin-top: 0;
        }

        .staff-list ul {
            list-style: none;
            padding: 0;
        }

        .staff-list li {
            margin-bottom: 0.75rem;
        }

        .staff-list a {
            color: var(--primary-teal);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: color 0.3s;
        }

        .staff-list a:hover {
            color: var(--primary-dark);
        }

        /* CTA Box */
        .cta-box {
            background: var(--primary-teal);
            color: white;
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            margin: 3rem 0;
        }

        .cta-box h2 {
            color: white;
            margin: 0 0 1rem;
        }

        .cta-box p {
            color: white;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            display: inline-block;
            background: var(--accent-warm);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #D97D5A;
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.8);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: white;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links { display: none; }
            .footer-content { grid-template-columns: 1fr; }
            .page-header h1 { font-size: 2rem; }
        }

/* Source: alan-brandis.html (and 6 page(s)) */
.profile-layout { display: flex; gap: 2rem; }
        .profile-main { flex: 2; }
        .profile-sidebar { flex: 1; background: var(--neutral-light); padding: 1.5rem; border-radius: 8px; }
        @media (max-width: 968px) { .profile-layout { flex-direction: column; } }
        .profile-sidebar h3 { margin-top: 0; }

/* Source: contact.html (and 1 page(s)) */
.contact-info {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .contact-info h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            border: 2px solid var(--neutral-medium);
            margin: 2rem 0;
        }
        .form-note {
            background: var(--neutral-light);
            padding: 1.5rem;
            border-radius: 4px;
            margin-bottom: 2rem;
        }

/* Source: directory.html (and 1 page(s)) */
.directory-table {
            width: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .directory-table thead {
            background: var(--primary-teal);
            color: white;
        }
        .directory-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        .directory-table td {
            padding: 1rem;
            border-bottom: 1px solid var(--neutral-medium);
        }
        .directory-table tr:last-child td {
            border-bottom: none;
        }
        .directory-table a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .directory-table thead { display: none; }
            .directory-table, .directory-table tbody, .directory-table tr, .directory-table td { display: block; width: 100%; }
            .directory-table tr { background: white; margin-bottom: 1rem; border: 1px solid var(--neutral-medium); border-radius: 8px; padding: 1rem; }
            .directory-table td { border: none; padding: 0.5rem 0; }
            .directory-table td::before { content: attr(data-label) ": "; font-weight: 600; display: inline-block; min-width: 8rem; color: var(--text-dark); }
        }

/* Source: index.html (and 1 page(s)) */
:root {
            /* Logo-based teal color */
            --primary-teal: #2B7A78;
            --primary-dark: #1F5654;
            --primary-light: #3D9B98;

            /* Supporting colors */
            --accent-warm: #E8956F;
            --neutral-light: #F5F5F5;
            --neutral-medium: #E0E0E0;
            --text-dark: #2C3E50;
            --text-medium: #546E7A;
            --white: #FFFFFF;

            /* Typography */
            --font-heading: 'Merriweather', serif;
            --font-body: 'Open Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
        }

        /* Navigation */
        .top-bar {
            background: var(--primary-dark);
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            margin-left: 1.5rem;
        }

        nav {
            background: white;
            border-bottom: 1px solid var(--neutral-medium);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
        }

        .logo img {
            height: 60px;
            margin-right: 1rem;
        }

        .logo-text h1 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-teal);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.85rem;
            color: var(--text-medium);
            margin-top: 0.25rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-teal);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 4rem 2rem;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-primary {
            display: inline-block;
            background: var(--accent-warm);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .cta-primary:hover {
            background: #D97D5A;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }

        .hero-contact {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .hero-contact h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .phone-number {
            font-size: 2rem;
            font-weight: 700;
            margin: 1rem 0;
            display: block;
        }

        .phone-number a {
            color: white;
            text-decoration: none;
        }

        .locations-quick {
            margin-top: 1.5rem;
            font-size: 0.95rem;
        }

        /* Services Section */
        .services-section {
            padding: 5rem 2rem;
            background: var(--neutral-light);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-medium);
            max-width: 800px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .service-link {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-link:hover {
            color: var(--primary-dark);
        }

        /* Team Section */
        .team-section {
            padding: 5rem 2rem;
            background: white;
        }

        .team-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .team-intro h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .team-intro p {
            font-size: 1.1rem;
            color: var(--text-medium);
            line-height: 1.8;
        }

        .team-highlight {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-teal);
            margin: 2rem 0;
        }

        .team-highlight h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        /* Resources Section */
        .resources-section {
            padding: 5rem 2rem;
            background: var(--primary-teal);
            color: white;
        }

        .resources-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .resources-text h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .resources-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            opacity: 0.95;
        }

        .btn-secondary {
            display: inline-block;
            background: white;
            color: var(--primary-teal);
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s;
        }

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

        .resource-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .category-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 4px;
            color: white;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
        }

        .category-item:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Locations Section */
        .locations-section {
            padding: 5rem 2rem;
            background: var(--neutral-light);
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .location-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
        }

        .location-card h3 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .location-card p {
            color: var(--text-medium);
            margin-bottom: 0.5rem;
        }

        .location-link {
            display: inline-block;
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Contact CTA */
        .contact-cta {
            padding: 5rem 2rem;
            background: white;
            text-align: center;
        }

        .contact-cta h2 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .contact-cta p {
            font-size: 1.2rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.8);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: white;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links { display: none; }
            .hero-container,
            .resources-content { grid-template-columns: 1fr; }
            .services-grid,
            .locations-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
            .hero h2 { font-size: 2rem; }
        }

/* Source: locations.html (and 1 page(s)) */
.location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .location-card {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
        }
        .location-card h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .location-card p {
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
        .location-card strong {
            color: var(--primary-dark);
        }
        .map-placeholder {
            background: var(--neutral-medium);
            height: 200px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-medium);
            margin-top: 1rem;
        }
        .therapist-list {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--neutral-medium);
        }
        .therapist-list h4 {
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
        .therapist-list ul {
            list-style: none;
            padding: 0;
        }
        .therapist-list li {
            margin-bottom: 0.5rem;
        }
        .therapist-list a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }

/* Source: make-payment.html (and 1 page(s)) */
.payment-box {
            background: var(--neutral-light);
            padding: 3rem;
            border-radius: 8px;
            margin: 2rem auto;
            max-width: 600px;
            text-align: center;
        }
        .payment-box ul {
            text-align: left;
            margin: 2rem 0;
        }
        .btn-payment {
            display: inline-block;
            background: var(--primary-teal);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 2rem;
        }
        .security-note {
            background: white;
            border-left: 4px solid var(--primary-teal);
            padding: 1.5rem;
            margin-top: 2rem;
            font-size: 0.95rem;
        }

/* Source: patient-info.html (and 1 page(s)) */
.forms-list {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .forms-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .forms-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--neutral-medium);
        }
        .forms-list li:last-child {
            border-bottom: none;
        }
        .forms-list a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }
        .forms-list a:hover {
            color: var(--primary-dark);
        }
        .insurance-box {
            background: var(--primary-teal);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .insurance-box h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .insurance-box p, .content-section .insurance-box p {
            color: white;
        }
        .staff-list {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .staff-list ul {
            list-style: none;
            padding: 0;
        }
        .staff-list li {
            margin-bottom: 0.75rem;
        }
        .staff-list a {
            color: var(--primary-teal);
            font-weight: 600;
        }
        .cta-box {
            background: var(--primary-teal);
            color: white;
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            margin: 3rem 0;
        }
        .cta-box h2 {
            color: white;
            margin: 0 0 1rem;
        }
        .btn-primary {
            display: inline-block;
            background: var(--accent-warm);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
        }

/* Source: resources.html (and 1 page(s)) */
.category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .category-card {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .category-card:hover {
            border-color: var(--primary-teal);
            transform: translateY(-4px);
        }
        .category-card h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }
        .category-card p {
            color: var(--text-medium);
            font-size: 0.95rem;
        }
        .intro-box {
            background: var(--primary-teal);
            color: white;
            padding: 3rem 2rem;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 3rem;
        }
        .intro-box h2, .content-section .intro-box h2 {
            color: white;
            margin: 0 0 1rem;
        }
        .intro-box p, .content-section .intro-box p {
            color: white;
            font-size: 1.1rem;
        }

/* Source: services.html (and 1 page(s)) */
:root {
            --primary-teal: #2B7A78;
            --primary-dark: #1F5654;
            --primary-light: #3D9B98;
            --accent-warm: #E8956F;
            --neutral-light: #F5F5F5;
            --neutral-medium: #E0E0E0;
            --text-dark: #2C3E50;
            --text-medium: #546E7A;
            --white: #FFFFFF;
            --font-heading: 'Merriweather', serif;
            --font-body: 'Open Sans', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
        }

        .top-bar {
            background: var(--primary-dark);
            color: white;
            padding: 0.5rem 2rem;
            font-size: 0.9rem;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar a { color: white; text-decoration: none; margin-left: 1.5rem; }

        nav {
            background: white;
            border-bottom: 1px solid var(--neutral-medium);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
        }

        .logo-text h1 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-teal);
            line-height: 1.2;
        }

        .logo-text p {
            font-size: 0.85rem;
            color: var(--text-medium);
            margin-top: 0.25rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-teal);
        }

        .page-header {
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .page-header h1 {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 400;
        }

        .content-section {
            padding: 4rem 2rem;
            background: white;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .content-section p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .content-section h2 {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--primary-teal);
            margin: 2.5rem 0 1.5rem;
        }

        .content-section ul {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .content-section li {
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .content-section a {
            color: var(--primary-teal);
            text-decoration: none;
            font-weight: 600;
        }

        .content-section a:hover {
            color: var(--primary-dark);
        }

        .staff-list {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .staff-list h2 {
            margin-top: 0;
        }

        .staff-list ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .staff-list li {
            margin-bottom: 0.75rem;
        }

        .staff-list a {
            color: var(--primary-teal);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
        }

        .cta-box {
            background: var(--primary-teal);
            color: white;
            padding: 2.5rem;
            border-radius: 8px;
            text-align: center;
            margin: 3rem 0;
        }

        .cta-box h2 {
            color: white;
            margin: 0 0 1rem;
        }

        .cta-box p, .cta-box p a {
            color: white;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            display: inline-block;
            background: var(--accent-warm);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #D97D5A;
            transform: translateY(-2px);
        }

        footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.8);
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: white;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.9rem;
        }

        @media (max-width: 968px) {
            .nav-links { display: none; }
            .footer-content { grid-template-columns: 1fr; }
            .page-header h1 { font-size: 2rem; }
        }

/* Source: team.html (and 1 page(s)) */
.team-intro {
            background: var(--neutral-light);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 3rem;
        }
        .bio-placeholder {
            background: white;
            border: 2px solid var(--neutral-medium);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .bio-placeholder h3 {
            color: var(--primary-teal);
            margin-bottom: 1rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .team-card {
            background: white;
            border: 2px solid var(--neutral-medium);
            border-radius: 8px;
            padding: 1.5rem;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .team-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 1rem;
        }
        .team-card h3 { color: var(--primary-teal); margin: 0 0 0.5rem; }
        .team-card p { margin: 0; color: var(--text-medium); font-size: 0.95rem; }

/* =========================================================
   Inline-style utilities (auto-generated)
   Each class corresponds to a former style="..." attribute.
   ========================================================= */
.u-008a31c6 { margin-bottom: 2rem; }
.u-113cf7f5 { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.u-26a1769f { text-align: center; margin-top: 2rem; }
.u-2cf460b3 { background: var(--neutral-light); padding: 2rem; border-radius: 8px; margin-top: 3rem; }
.u-2f936d2a { text-align: center; margin-bottom: 3rem; }
.u-42701edb { font-size: 1.5rem; padding: 1.5rem 3rem; }
.u-485c3355 { text-align: center; margin-bottom: 2rem; }
.u-4c84b10c { background: var(--neutral-light); padding: 2rem; border-radius: 8px; margin-top: 3rem; text-align: center; }
.u-5069efd9 { color: var(--primary-teal); font-weight: 600; }
.u-691db885 { max-width: 1200px; }
.u-6a8062a7 { text-align: center; max-width: 800px; margin: 0 auto 1rem; }
.u-6c5c2121 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary-dark); margin-bottom: 1rem; }
.u-72a68ac3 { text-align: center; }
.u-735d64c4 { background: var(--neutral-light); padding: 2rem; border-radius: 8px; margin-top: 2rem; }
.u-744734e4 { text-decoration: underline; }
.u-75e802cd { margin: 2rem 0; }
.u-7c0f06fe { text-decoration: none; color: inherit; }
.u-7d64d4e6 { margin-top: 3rem; }
.u-955ab49b { max-width: 900px; margin: 0 auto; }
.u-958c471c { color: var(--primary-teal); margin-bottom: 1rem; }
.u-9a79c2de { margin-left: 2rem; }
.u-9eed31da { background: var(--neutral-light); padding: 2rem; border-radius: 8px; margin-top: 1.5rem; }
.u-c0910c09 { background: var(--primary-teal); color: white; }
.u-c3122899 { margin-top: 0; }
.u-c70e463f { max-width: 220px; height: auto; float: left; margin: 0 1.5rem 1rem 0; }
.u-cdd5ccc3 { clear: both; }
.u-cecc065a { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); margin-top: 2rem; }
.u-cee5c582 { margin-top: 2rem; }
.u-d4741428 { text-align: center; margin-top: 3rem; }
.u-d4f7536f { margin-top: 1.5rem; }
.u-dab43fb9 { margin-top: 1rem; }
.u-dac865e9, a.u-dac865e9 { color: white; text-decoration: underline; }
.u-e34daf63 { columns: 2; column-gap: 2rem; line-height: 2; }
.u-e943e4bc { font-weight: 600; font-size: 1.1rem; }
.u-f2892a2e { display: none; }
