        /* Note: :root variables from the original 'New Header' style block (like --primary-color, --secondary-color etc.) 
           are now assumed to be defined in /global/styles/global.css */
        
        html { /* Kept from old page for scroll behavior and base font size if not covered by new header */
            scroll-behavior: smooth;
            font-size: 100%; /* Base for rem units */
        }
        body { /* Additional body styles from old page, may complement or be overridden by new header's body styles */
            font-size: 17px; /* Specific to old page content, kept */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            width: 100%;
            overflow-x: hidden;
            /* Existing font-family, color, background-color, line-height are now handled by /global/styles/global.css or nav.css if applicable */
        }
        
        .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
        a:focus-visible, button:focus-visible, [tabindex]:not([tabindex=\"-1\"]):focus-visible { outline: 3px solid var(--focus-outline-color, var(--accent-color)); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.3); }
        a:focus, button:focus, [tabindex]:not([tabindex=\"-1\"]):focus { outline: none; }
        
        .container { max-width: 960px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }

        /* Hero Section */
        .service-hero {
            position: relative;
            background-image: url('/content/images/sunsetseasure-bg.jpg');
            background-size: cover; background-position: center center; background-attachment: fixed;
            color: var(--text-color-light); text-align: center;
            padding: 100px 0 120px 0;
            min-height: 65vh; 
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            width: 100%;
        }
        .service-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(80, 60, 40, 0.6); z-index: 1; }
        .service-hero .container { position: relative; z-index: 2; }
        .service-hero h1 { font-family: var(--font-secondary); font-size: clamp(2.4rem, 5.5vw, 3.5rem); margin-bottom: 20px; font-weight: 700; line-height: 1.25; text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
        .service-hero p.subhead { font-family: var(--font-primary); font-size: clamp(1.1rem, 2.5vw, 1.3rem); max-width: 720px; margin: 0 auto 35px; opacity: 0.95; font-weight: 300; }
        /* Button styles are now handled by /global/styles/global.css */

        /* Main Content Area Styling */
        .page-content { width: 100%; }
        .content-section { padding-top: 70px; padding-bottom: 70px; width: 100%; }
        .content-section[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .content-section.aos-animate { opacity: 1; transform: translateY(0); }
        .content-section.bg-white { background-color: var(--background-white); }
        .content-section.bg-off-white { background-color: var(--background-off-white); }
        .content-section .section-title { font-family: var(--font-secondary); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--secondary-color); text-align: center; margin-bottom: 40px; font-weight: 700; position: relative; padding-bottom: 15px; }
        .content-section .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background-color: var(--accent-color); }
        .content-section h3 { font-family: var(--font-secondary); font-size: 1.6rem; color: var(--primary-color); margin-top: 30px; margin-bottom: 18px; }
        .content-section p, .content-section li { font-size: 1.08rem; color: #444; margin-bottom: 20px; line-height: 1.8; }
        .content-section ul { list-style: none; padding-left: 0; }
        .content-section ul li { padding-left: 25px; position: relative; }
        .content-section ul li::before { content: '\2713'; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }
        .content-section strong { color: var(--secondary-color); font-weight: 700; }
        .content-section blockquote { border-left: 5px solid var(--accent-color); padding: 15px 20px; margin: 30px 0; font-style: italic; color: #555; background-color: var(--background-off-white); border-radius: var(--border-radius); }

        /* Specialties/Service Grid */
        .specialties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
        .specialty-card { background-color: var(--background-white); padding: 30px 25px; border-radius: var(--border-radius); text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
        .specialty-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        /* Icon container with background circle */
        .specialty-card .icon-container { 
            color: var(--primary-color); 
            font-size: 2.5rem; 
            margin-bottom: 15px; 
            background-color: rgba(var(--primary-color-rgb), 0.50); 
            width: 60px; 
            height: 60px; 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin-left: auto; 
            margin-right: auto; 
            transition: all 0.3s ease;
        }

        /* Solid background and white icon on hover */
        .specialty-card:hover .icon-container { 
            background-color: var(--primary-color); 
            color: var(--text-color-light); 
            transform: scale(1.1);
        }
        .specialty-card h3 { font-family: var(--font-secondary); font-size: 1.35rem; margin-bottom: 10px; color: var(--secondary-color); min-height: auto; }
        .specialty-card p { font-size: 0.95rem; flex-grow: 1; margin-bottom:20px; }
        .specialty-card .learn-more-btn { display: inline-block; background-color: transparent; color: var(--accent-color); border: 2px solid var(--accent-color); padding: 10px 20px; text-decoration: none; border-radius: var(--border-radius); font-weight: 700; transition: all 0.3s ease; margin-top: auto; }
        .specialty-card .learn-more-btn:hover, .specialty-card .learn-more-btn:focus-visible { background-color: var(--accent-color); color: var(--text-color-light); }
        
        /* About Karen Section */
        .about-karen-section { padding-top: 70px; padding-bottom: 70px; }
        .about-karen-content { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
        .about-karen-image { flex: 1 1 300px; text-align: center; max-width: 250px; margin: 0 auto 30px auto; }
        .about-karen-image img { max-width: 100%; height: auto; border-radius: var(--border-radius); box-shadow: 0 8px 25px rgba(0,0,0,0.12); border: 5px solid var(--background-white); }
        .about-karen-text { flex: 2 1 400px; }
        .about-karen-text .section-title { text-align: left; margin-bottom: 25px; }
        .about-karen-text .section-title::after { left: 0; transform: translateX(0); width:60px; }
        .about-karen-text p { font-size: 1.1rem; }
        /* Button styles are now handled by /global/styles/global.css */

        /* Appointment CTA Section */
        .appointment-cta-section { padding-top: 50px; padding-bottom: 50px; text-align: center; }
        .appointment-cta-section h2 { font-family: var(--font-secondary); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 20px; color: var(--secondary-color); border-bottom: none; }
        .appointment-cta-section p { font-size: 1.1rem; margin-bottom: 25px; color: #555; max-width: 600px; margin-left:auto; margin-right:auto;}

        /* Call to Action Banner */
        .cta-banner-section { padding: 60px 0; background-color: var(--primary-color); color: var(--text-color-light); text-align: center; margin: 0; width: 100%; }
        .cta-banner-section h2 { font-family: var(--font-secondary); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 20px; color: var(--text-color-light); border-bottom: none; }
        .cta-banner-section p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.9; }
        /* Button styles are now handled by /global/styles/global.css */

        /* Accordion (FAQ) */
        .faq-section { padding-bottom: 30px; width: 100%; }
        .accordion-item { margin-bottom: 10px; border: 1px solid #ddd; border-radius: var(--border-radius); overflow:hidden;}
        .accordion-button { cursor: pointer; padding: 18px 20px; width: 100%; text-align: left; border: none; outline: none; transition: background-color 0.3s; background-color: var(--background-light); color: var(--secondary-color); font-family: var(--font-primary); font-weight: 700; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; }
        .accordion-button:hover { background-color: #e9e9e9; }
        .accordion-button::after { content: '+'; font-size: 1.5rem; color: var(--primary-color); transition: transform 0.3s ease; }
        .accordion-button[aria-expanded="true"]::after { content: '−'; }
        .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; background-color: var(--background-white); }
        .accordion-content p { padding: 0 20px; margin-bottom: 0; } 
        .accordion-content[aria-hidden="false"] { /* Handled by JS */ }

        /* Footer styles are now handled by /global/styles/footer.css */

        /* Responsive styles for content (old nav responsive styles removed) */
        @media (max-width: 768px) {
            .service-hero { padding: 80px 0 100px 0; min-height: 60vh; }
            .content-section { padding-top: 50px; padding-bottom: 50px; }
            .about-karen-image { margin-left:auto; margin-right:auto; }
            .about-karen-text .section-title { text-align: center; }
            .about-karen-text .section-title::after { left: 50%; transform: translateX(-50%); }
        }