/* Service Introduction Redesign */
    .service-introduction-section {
        position: relative;
        padding: 120px 0;
        background-color: #ffffff;
        overflow: hidden;
    }

    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .intro-main-content .eyebrow {
        display: inline-block;
        font-size: 1em;
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 20px;
        padding-left: 50px;
        position: relative;
    }

    .intro-main-content .eyebrow::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 35px;
        height: 2px;
        background: var(--primary-color);
    }

    .intro-main-content h2 {
        font-size: 3.5em;
        line-height: 1.1;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 35px;
        letter-spacing: -0.02em;
    }

    .intro-highlight-box {
        background: var(--primary-color);
        padding: 50px;
        border-radius: 24px;
        color: #ffffff;
        position: relative;
        box-shadow: 0 30px 60px rgba(0, 52, 102, 0.15);
    }

    .intro-highlight-box p {
        font-size: 1.35em;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 35px;
        font-weight: 400;
    }

    .intro-highlight-box .btn-default {
        background: #ffffff;
        color: var(--primary-color);
        border: none;
    }

    .intro-highlight-box .btn-default:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-3px);
    }

    @media (max-width: 991px) {
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .intro-main-content h2 {
            font-size: 2.8rem;
        }
    }

    @keyframes rotateSlow {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

@keyframes float-ortho-1 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    @keyframes float-ortho-2 {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(-3deg); }
    }
    .ortho-sticker {
      position: absolute;
      z-index: 1;
      opacity: 0.15; /* Subtle background presence */
      pointer-events: none;
    }

.what-is-section {
      background-color: var(--primary-color);
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    /* Ambient glow */
    .what-is-section::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -10%;
      width: 40%;
      height: 40%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .what-is-section .section-badge {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 25px;
      color: #ffffff;
    }

    .what-is-section .section-title h2 {
      font-size: 3rem;
      line-height: 1.1;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 30px;
    }

    .what-is-section .lead-text {
      font-size: 1.25rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 0;
    }

    /* Feature Grid */
    .what-is-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
      margin-top: 40px;
    }

    .what-is-topic-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 25px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all 0.3s ease;
    }

    .what-is-topic-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateX(10px);
    }

    .topic-dot {
      width: 10px;
      height: 10px;
      background: #ffffff;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .topic-text {
      font-size: 1.1em;
      font-weight: 500;
      color: #ffffff;
    }

    /* Closing Statement Block */
    .philosophy-banner {
      margin-top: 80px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-left: 6px solid #ffffff;
      border-radius: 4px 16px 16px 4px;
      position: relative;
    }

    .philosophy-banner p {
      font-size: 1.4em;
      line-height: 1.6;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 0;
      font-style: italic;
    }

    .philosophy-banner strong {
      display: block;
      margin-top: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1em;
      font-style: normal;
      opacity: 0.8;
    }

    @media (max-width: 991px) {
      .what-is-section .section-title h2 { font-size: 2.5em; }
      .philosophy-banner { padding: 30px; margin-top: 50px; }
      .philosophy-banner p { font-size: 1.25em; }
    }

@keyframes float-bone { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
    @keyframes float-scalpel { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(-15px) rotate(50deg); } }
    @keyframes float-slow { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(15px, -10px); } }
    .clinical-sticker { position: absolute; z-index: 1; opacity: 0.12; pointer-events: none; }

.why-avoid-surgery {
        background-color: #f8f9fa;
        padding: 120px 0;
        position: relative;
    }

    .benefit-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .benefit-item {
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04);
        display: flex;
        gap: 25px;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .benefit-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.08);
        border-color: var(--primary-color);
    }

    .benefit-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 24px;
        transition: all 0.3s ease;
    }

    /* Benefit icons frozen - no hover activity */
    .benefit-item:hover .benefit-icon {
        transform: none !important;
        background-color: var(--primary-color) !important;
    }

    .benefit-text {
        font-size: 1.15em;
        font-weight: 600;
        color: var(--primary-color);
        line-height: 1.4;
    }

    /* Light Contrast Mode Specifics */
    html[data-contrast="light"] .benefit-icon i {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
    }

    @media (max-width: 768px) {
        .benefit-grid { grid-template-columns: 1fr; }
        .why-avoid-surgery .section-title h2 { font-size: 2.2em; }
    }

    /* Accessibility Override: Ensure icons appear BLACK visually in Invert Mode */
    /* Logic: White Color (#ffffff) + filter:none + Global html Inversion = Visual Black */
    html[data-contrast="invert"] .benefit-icon i {
        color: #ffffff !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    /* Dark Mode: Icons should remain high-contrast (Yellow on Black) */
    html[data-contrast="dark"] .benefit-icon i {
        color: #ffff00 !important;
    }

    /* Force benefit icons to stay black in light mode even if item is hovered */
    html[data-contrast="light"] body .benefit-item:hover .benefit-icon i {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
    }

    /* Invert Mode Hover Fix: Neutralized */
    html[data-contrast="invert"] .benefit-item:hover .benefit-icon {
        background-color: var(--primary-color) !important;
    }

@keyframes float-subtle {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }
        @keyframes rotate-slow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .surgery-risk-svg {
            position: absolute;
            z-index: 1;
            opacity: 0.18; /* Increased for better visibility while remaining subtle */
            pointer-events: none;
        }

/* How It Works Section Styles */
    .how-it-works-section {
      background-color: var(--primary-color);
      color: #ffffff;
      position: relative;
      overflow: hidden;
      padding: 120px 0;
    }

    .how-it-works-section .section-title h2 {
      color: #ffffff;
    }

    .how-it-works-section::before {
      content: '';
      position: absolute;
      bottom: -10%;
      left: -10%;
      width: 40%;
      height: 40%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
      pointer-events: none;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 50px;
    }

    .process-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 50px 30px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 100%;
    }

    .process-card:hover {
      transform: translateY(-12px);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .process-step-num {
      position: absolute;
      top: 20px;
      right: 25px;
      font-family: var(--accent-font);
      font-size: 2.5rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.2);
      line-height: 1;
      transition: all 0.3s ease;
    }

    .process-card:hover .process-step-num {
      color: #ffffff;
      transform: scale(1.1);
    }

    .process-icon-box {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
      font-size: 32px;
      color: #ffffff;
      transition: all 0.3s ease;
    }

    /* Process icons frozen - no hover activity */
    .process-card:hover .process-icon-box {
      background: rgba(255, 255, 255, 0.05) !important;
      color: #ffffff !important;
      transform: none !important;
    }

    .process-card h4 {
      color: #ffffff;
      font-size: 1.15rem;
      line-height: 1.5;
      font-weight: 500;
      margin: 0;
    }

    /* Summary Banner */
    .process-summary-banner {
      margin-top: 80px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 4px solid #ffffff;
      border-radius: 16px;
      text-align: center;
    }

    .process-summary-banner p {
      font-size: 1.5rem;
      line-height: 1.4;
      color: #ffffff;
      font-weight: 400;
      margin: 0;
      font-style: italic;
    }

    @media (max-width: 1199px) {
      .process-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 767px) {
      .process-grid { grid-template-columns: 1fr; }
      .process-summary-banner p { font-size: 1.2rem; }
      .how-it-works-section .section-title h2 { font-size: 2.2rem; }
    }

    /* Accessibility Overrides for Process Icons */
    html[data-contrast="invert"] .process-icon-box i {
      color: #ffffff !important;
      filter: none !important;
      -webkit-filter: none !important;
    }

    html[data-contrast="dark"] .process-icon-box i {
      color: #ffff00 !important;
    }

    /* Light Contrast Mode Overrides */
    html[data-contrast="light"] .how-it-works-section,
    html[data-contrast="light"] .how-it-works-section .section-title h2,
    html[data-contrast="light"] .how-it-works-section .section-title p,
    html[data-contrast="light"] .how-it-works-section .section-title span,
    html[data-contrast="light"] .process-card h4,
    html[data-contrast="light"] .process-summary-banner p,
    html[data-contrast="light"] .process-icon-box i {
      color: #000000 !important;
      -webkit-text-fill-color: #000000 !important;
    }

    html[data-contrast="light"] .process-card {
      background: rgba(0, 0, 0, 0.05) !important;
      border-color: rgba(0, 0, 0, 0.1) !important;
    }

    html[data-contrast="light"] .process-icon-box {
      background: rgba(0, 0, 0, 0.05) !important;
      border-color: rgba(0, 0, 0, 0.1) !important;
    }

    /* Light Mode Hover Fix for Process Icons */
    html[data-contrast="light"] body .process-card:hover .process-icon-box i {
        color: #000066 !important;
        -webkit-text-fill-color: #000066 !important;
    }

@keyframes float-diag {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        @keyframes pulse-soft {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.2; transform: scale(1.05); }
        }
        .process-sticker {
            position: absolute;
            z-index: 1;
            opacity: 0.12;
            pointer-events: none;
        }

.treatment-options-section {
        background-color: #f8f9fa; /* Light Background */
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        /* Dotted Pattern Background */
        background-image: radial-gradient(#d1d5db 1px, transparent 1px);
        background-size: 24px 24px;
    }

    /* Decorative Floating Shape */
    .treatment-deco-shape {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 2px solid rgba(2, 48, 71, 0.05);
        border-radius: 50%;
        top: -50px;
        right: -50px;
        z-index: 0;
        animation: floatShape 20s infinite linear;
    }

    .treatment-deco-shape::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 1px dashed rgba(2, 48, 71, 0.1);
        border-radius: 50%;
    }

    @keyframes floatShape {
        0% { transform: rotate(0deg) translate(0, 0); }
        50% { transform: rotate(180deg) translate(-20px, 20px); }
        100% { transform: rotate(360deg) translate(0, 0); }
    }

    .treatment-card {
        background: #ffffff;
        padding: 40px 35px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        height: 100%;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.05);
        z-index: 1;
    }

    .treatment-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .treatment-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,52,102,0.1);
        border-color: var(--primary-color);
    }

    .treatment-card:hover::before {
        transform: scaleX(1);
    }

    .treatment-card h4 {
        color: var(--primary-color);
        font-size: 1.4rem;
        font-weight: 800;
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }
    
    .treatment-card p {
        color: #4b5563;
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 25px;
        flex-grow: 1;
    }

    .read-more-link {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        transition: all 0.3s ease;
    }
    
    .treatment-card:hover .read-more-link {
        color: #000000;
        gap: 15px;
    }

    .card-arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        margin-left: 8px;
        color: var(--accent-color); /* Ensure arrow is visible too */
    }

    .treatment-card:hover .card-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* Mobile Responsiveness (<= 480px) */
    @media (max-width: 480px) {
        .treatment-options-section {
            padding: 50px 0 !important; /* Reduce massive vertical padding */
        }
        .treatment-options-section .section-title h2 {
            font-size: 2.2rem !important; /* Scale down heading to prevent overflow */
        }
        .treatment-options-section .section-title p {
            font-size: 1.05rem !important; /* Optimize body text for readability */
            line-height: 1.6 !important; /* Improve line spacing */
            margin-bottom: 30px !important; /* Tighter gap below intro */
        }
        .treatment-card {
            padding: 25px 20px !important; /* Provide breathing room inside cards */
            height: auto !important; /* Ensure content determines height */
        }
        .treatment-card h4 {
            font-size: 1.25rem !important; /* Scale down card titles */
            margin-bottom: 12px !important; /* Standardize gap */
        }
        .treatment-card p {
            font-size: 1rem !important; /* Normalize paragraph text */
            margin-bottom: 20px !important;
        }
        .treatment-options-section .row.mt-5 p {
            font-size: 1.05rem !important; /* Scale down footer text */
            line-height: 1.6 !important;
        }
    }

@keyframes float-treatment {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(5deg); }
        }
        @keyframes drift-treatment {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(15px); }
        }
        .treatment-sticker {
            position: absolute;
            z-index: 0;
            opacity: 0.25; /* Increased opacity for better visibility on light background */
            pointer-events: none;
        }

.common-conditions-section {
        background-color: var(--primary-color);
        color: #ffffff;
        padding: 100px 0;
        position: relative;
    }

    .condition-card {
        background: transparent;
        border: none;
        padding: 15px 0;
        border-radius: 0;
        height: 100%;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .condition-card:hover {
        transform: translateX(10px);
        background: transparent;
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* Living Node Animation */
    .animated-bullet {
        width: 12px;
        height: 12px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        margin-right: 20px;
        box-shadow: 0 0 0 0 rgba(229, 234, 236, 0.7); /* Match secondary color */
        animation: pulse-blue 2s infinite;
    }

    @keyframes pulse-blue {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(229, 234, 236, 0.7);
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(229, 234, 236, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(229, 234, 236, 0);
        }
    }

    .condition-text {
        font-size: 1.15em;
        font-weight: 500;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Mobile Responsiveness (<= 480px) */
    @media (max-width: 480px) {
        .common-conditions-section {
            padding: 50px 0 !important; /* Tighter vertical padding */
        }
        .common-conditions-section .section-title h2 {
            font-size: 2.2rem !important; /* Scale down heading */
        }
        .common-conditions-section .section-title p {
            font-size: 1.05rem !important; /* Normalize body class size */
            margin-bottom: 30px !important; /* Tighter bottom margin */
        }
        .condition-card {
            padding: 12px 0 !important; /* Slightly tighter list padding */
        }
        .condition-card:hover {
            transform: translateX(5px) !important; /* Less aggressive hover slide on mobile */
        }
        .condition-text {
            font-size: 1.05rem !important; /* Standardize text size */
            line-height: 1.4 !important; /* Tighten line height for list items */
        }
        .animated-bullet {
            margin-right: 15px !important; /* Slightly tighter bullet gap */
        }
        .common-conditions-section .row.mt-5 p {
            font-size: 1.05rem !important; /* Standardize footer text */
            line-height: 1.6 !important;
        }
    }

    /* Accessibility Overrides - Dark Contrast Mode Bullets */
    html[data-contrast="dark"] .animated-bullet {
        background-color: #ffff00 !important;
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
        animation: pulse-yellow 2s infinite;
    }

    @keyframes pulse-yellow {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
        }
        70% {
            transform: scale(1);
            box-shadow: 0 0 0 10px rgba(255, 255, 0, 0);
        }
        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
        }
    }

@keyframes float-anatomy {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        .anatomy-sticker {
            position: absolute;
            z-index: 0;
            opacity: 0.08; /* Reduced dramatically to avoid fighting with text */
            pointer-events: none;
            filter: brightness(0) invert(1);
        }

.condition-card-icon {
                        width: 38px;
                        height: 38px;
                        margin-right: 18px;
                        flex-shrink: 0;
                        transition: all 0.3s ease;
                        filter: brightness(0) invert(1); /* Sharp white for navy bg */
                    }
                    .condition-card:hover .condition-card-icon {
                        transform: scale(1.15) rotate(5deg);
                    }
                    /* Light Contrast Mode - Keep Icons Black */
                    html[data-contrast="light"] .condition-card-icon {
                        filter: brightness(0) !important;
                    }
                    
                    /* Dark Contrast Mode - Dual Tone White & Black for Tendon Icon */
                    html[data-contrast="dark"] .dual-tone-icon {
                        filter: none !important;
                    }
                    html[data-contrast="dark"] .dual-tone-icon path {
                        fill: #ffffff !important; /* High-Visibility White */
                    }
                    html[data-contrast="dark"] .dual-tone-icon path:last-child {
                        fill: #000000 !important; /* Accenting Black */
                        stroke: #ffffff !important;
                        stroke-width: 1px !important;
                    }

.physician-led-section {
        background-color: #f8f9fa;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .physician-card {
        background: #ffffff;
        padding: 60px 40px;
        border-radius: 20px;
        /* Multi-layered soft shadow for levitation effect */
        box-shadow: 
            0 10px 40px rgba(0,0,0,0.06),
            0 1px 3px rgba(0,0,0,0.02);
        position: relative;
        overflow: hidden;
        /* Gradient Border */
        border-left: 8px solid var(--primary-color);
        border-image: linear-gradient(to bottom, var(--primary-color), var(--accent-color)) 1 100%;
        text-align: left;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .physician-card:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 20px 60px rgba(0,0,0,0.08),
            0 5px 15px rgba(0,0,0,0.03);
    }

    .physician-watermark {
        position: absolute;
        right: -40px;
        bottom: -40px;
        font-size: 300px;
        color: rgba(2, 48, 71, 0.03);
        z-index: 0;
        pointer-events: none;
        transform: rotate(-10deg); /* Slight rotation for dynamic feel */
    }

    .physician-watermark-small {
        position: absolute;
        top: 20px;
        right: 40px;
        font-size: 80px;
        color: rgba(2, 48, 71, 0.02);
        z-index: 0;
        pointer-events: none;
    }

    .physician-content {
        position: relative;
        z-index: 1;
    }

    .physician-title {
        font-family: var(--accent-font);
        font-size: 36px; /* Slightly larger */
        background: linear-gradient(45deg, var(--primary-color), #2c3e50); /* Subtle gradient text */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 25px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .physician-intro-text {
        font-size: 19px; /* Slightly easier to read */
        line-height: 1.8;
        color: #4a5568; /* Softer dark gray */
        margin-bottom: 20px;
    }

    .highlight-name {
        color: var(--primary-color);
        font-weight: 700;
        position: relative;
        display: inline-block;
    }
    
    .highlight-name::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 8px; /* Highlighting marker style */
        background: rgba(var(--accent-color-rgb), 0.15); /* Assuming accent rgb avail, else pale yellow */
        background: rgba(255, 193, 7, 0.15); /* Fallback subtle highlight */
        z-index: -1;
        transform: skewX(-10deg);
    }

    /* Premium Primary Button with Shine */
    .primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), #0a4f75); /* Gradient background */
        color: #ffffff;
        padding: 18px 36px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        margin-top: 25px;
        position: relative;
        overflow: hidden; /* For shine effect */
        box-shadow: 0 4px 15px rgba(2, 48, 71, 0.2);
    }

    .primary-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .primary-btn:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(2, 48, 71, 0.3);
    }

    .primary-btn:hover i {
        transform: translateX(5px);
    }

    /* Shine Effect */
    .primary-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        transition: none;
    }

    .primary-btn:hover::after {
        left: 150%;
        transition: 0.7s ease;
    }

    /* Image Styling */
    .doctor-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transform: rotate(2deg); /* Artistic tilt */
        border: 5px solid #ffffff;
        transition: transform 0.3s ease;
    }

    .doctor-image-container:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .doctor-image-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    @media (min-width: 992px) {
        .physician-card {
            padding: 80px 80px; /* More breathing room */
        }
    }

    /* Mobile Responsiveness (<= 480px) */
    @media (max-width: 480px) {
        .physician-led-section {
            padding: 50px 0 !important; /* Tighter outer padding */
        }
        .physician-card {
            padding: 30px 20px !important; /* Tighter inner card padding */
        }
        .physician-watermark {
            font-size: 8rem !important; /* Scale down background icon */
            right: -20px !important;
            bottom: -20px !important;
        }
        .physician-title {
            font-size: 1.8rem !important; /* Scale down main heading */
            margin-bottom: 20px !important;
        }
        .physician-intro-text {
            font-size: 1rem !important; /* Standardize body text */
            line-height: 1.6 !important;
            margin-bottom: 20px !important;
        }
        .doctor-image-container {
            margin-bottom: 30px !important; /* Ensure gap between image and text when stacked */
            transform: rotate(0deg) !important; /* Remove artistic tilt on small screens to save space */
        }
        .primary-btn {
            width: 100% !important; /* Full width button on mobile */
            text-align: center !important;
        }
    }

    /* Dark Contrast Mode: Force High Specificity for Dr. Palvia Button */
    html[data-contrast="dark"] body .physician-card .primary-btn {
        background: #000000 !important;
        background-color: #000000 !important;
        color: #ffff00 !important;
        -webkit-text-fill-color: #ffff00 !important;
        border: 2px solid #ffffff !important;
        box-shadow: none !important;
        transform: none !important;
    }

    html[data-contrast="dark"] body .physician-card .primary-btn:hover {
        background: #000000 !important;
        background-color: #000000 !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        box-shadow: none !important;
        transform: none !important;
    }

    html[data-contrast="dark"] body .physician-card .primary-btn i {
        color: #ffff00 !important;
        -webkit-text-fill-color: #ffff00 !important;
        background-color: transparent !important; /* Fix for icon box glitch */
    }

    html[data-contrast="dark"] body .physician-card .primary-btn:hover i {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background-color: transparent !important; /* Fix for icon box glitch */
        transform: none !important;
    }

    html[data-contrast="dark"] body .physician-card .primary-btn::after {
        display: none !important;
    }

    /* Invert Mode Support for Button Arrow */
    html[data-contrast="invert"] body .physician-card .primary-btn i {
        color: #ffffff !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

@keyframes float-physician {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        @keyframes care-loop {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .physician-bg-svg {
            position: absolute;
            z-index: 0;
            opacity: 0.15; /* Increased opacity for visibility on light background */
            pointer-events: none;
            color: var(--primary-color); /* Corrected from white to Navy */
        }

.expectations-section {
        background-color: var(--primary-color);
        padding: 100px 0;
        color: #ffffff;
        position: relative;
    }

    .expectation-intro {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 60px;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .factor-item {
        background: transparent; /* Open layout */
        border: none;
        padding: 20px;
        text-align: center;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .factor-item:hover {
        transform: translateY(-5px);
    }
    
    .factor-icon {
        font-size: 56px; /* Even Larger for impact */
        color: #ffffff; /* Solid White for max contrast */
        margin-bottom: 25px;
        display: inline-block;
        /* Add a Glow Effect */
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px var(--accent-color);
        /* Identify icon clearly */
    }

    /* Redesigned Expectations Section */
    .expectations-section {
        background-color: var(--primary-color);
        padding: 140px 0;
        position: relative;
        overflow: hidden;
    }

    /* Ambient soft glow background */
    .expectations-aura {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 120%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
        pointer-events: none;
        z-index: 1;
    }

    .expectations-inner {
        position: relative;
        z-index: 2;
        max-width: 950px;
        margin: 0 auto;
    }

    .expectation-intro {
        font-size: 1.25em;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 300;
        margin-bottom: 70px;
        text-align: center;
        letter-spacing: -0.01em;
    }

    .statement-glass-block {
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 85px 60px;
        border-radius: 40px;
        position: relative;
        text-align: center;
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    }

    /* Floating focal point quote icon */
    .statement-focal-icon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--primary-color);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .goal-text {
        font-size: 1.45em;
        line-height: 1.5;
        color: #ffffff;
        font-weight: 500;
        font-style: italic;
        margin: 0;
        letter-spacing: -0.01em;
    }

    @media (max-width: 991px) {
        .expectations-section { padding: 100px 0; }
        .expectation-intro { font-size: 1.15em; }
        .statement-glass-block { padding: 60px 25px; border-radius: 24px; }
        .goal-text { font-size: 1.25em; }
        .statement-focal-icon { width: 80px; height: 80px; font-size: 1.5em; }
    }

    /* Invert Mode Support: Statement Focal Icon -> Bright Cyan */
    html[data-contrast="invert"] .statement-focal-icon i {
        color: #00ffff !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    /* Dark Mode Support: Statement Focal Icon -> Black Background with Yellow Icon */
    html[data-contrast="dark"] .statement-focal-icon {
        background-color: #000000 !important;
        border: 2px solid #ffff00 !important;
    }
    html[data-contrast="dark"] .statement-focal-icon i {
        color: #ffff00 !important;
    }

    /* Light Contrast Mode Support: Focal Icon -> Black */
    html[data-contrast="light"] .statement-focal-icon i {
        color: #000000 !important;
        -webkit-text-fill-color: #000000 !important;
    }

@keyframes float-exp-1 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(4deg); }
        }
        @keyframes float-exp-2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(-4deg); }
        }
        .expectations-sticker {
            position: absolute;
            z-index: 0;
            opacity: 0.08; /* Subtle watermark effect */
            pointer-events: none;
        }

.cta-evaluation-section {
        background-color: var(--primary-color); /* Match Footer Blue */
        padding: 100px 0 60px 0; /* Padding bottom reduced to flow into footer */
        text-align: center;
        color: #ffffff;
        position: relative;
        /* Match the theme's footer curve if applicable, or sit flush above it */
        /* To blend perfectly: */
        margin-bottom: -2px; /* Pull footer up slightly to hide any sub-pixel gap */
        z-index: 2; /* Sit above footer if needed */
    }

    /* Override Footer Top Radius to merge */
    footer.main-footer {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        padding-top: 40px !important; /* Adjust spacing since we are adding pre-footer content */
    }

    .cta-title {
        font-family: var(--accent-font);
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 25px;
        color: #ffffff;
    }

    .cta-text {
        font-size: 19px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        max-width: 750px;
        margin: 0 auto 45px auto;
    }

    /* Mobile Responsiveness (<= 480px) */
    @media (max-width: 480px) {
        .cta-evaluation-section {
            padding: 50px 0 80px 0 !important; /* Enough bottom padding to prevent button clipping */
        }
        .cta-title {
            font-size: 2.2rem !important; /* Scale down the massive heading */
            margin-bottom: 20px !important;
        }
        .cta-text {
            font-size: 1.05rem !important; /* Standardize body text size */
            line-height: 1.6 !important;
            margin-bottom: 30px !important; /* Tighter gap above button */
        }
        /* Button shape overrides removed to keep desktop look pristine */
    }

@keyframes float-cta-eval {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }
        @keyframes float-cta-eval-rev {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(-5deg); }
        }
        .cta-eval-sticker {
            position: absolute;
            z-index: 0;
            opacity: 0.08; /* Dramatically reduced to prevent text collision distraction */
            pointer-events: none;
        }

.faq-section {
            background-color: #ffffff;
            padding: 120px 0;
            position: relative;
        }

        .faq-accordion {
            max-width: 900px;
            margin: 50px auto 0;
        }

        /* Match about.php accordion styling */
        .faq-accordion .accordion-item {
            background-color: transparent;
            border: none;
            margin-bottom: 20px;
            border-radius: 4px !important;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .faq-accordion .accordion-header .accordion-button {
            font-size: 20px;
            line-height: 1.2em;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 25px 50px 25px 30px;
            transition: all 0.3s ease-in-out;
            border: none !important;
            box-shadow: none !important;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .faq-accordion .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--white-color);
            border-bottom: 1px solid var(--divider-color);
        }

        .faq-accordion .accordion-header .accordion-button.collapsed {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }

        .faq-accordion .accordion-item .accordion-button::after {
            content: "\f077";
            font-family: "Font Awesome 6 Free" !important;
            background-image: none !important;
            position: absolute;
            right: 30px;
            top: 50%;
            bottom: auto;
            transform: translate(0px, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            width: 20px;
            height: 20px;
            color: var(--white-color);
            transition: all 0.3s ease-in-out;
        }

        .faq-accordion .accordion-item .accordion-button.collapsed::after {
            transform: translate(0px, -50%) rotate(-180deg);
            color: var(--primary-color);
        }

        .faq-accordion .accordion-item .accordion-body {
            background-color: var(--primary-color);
            padding: 25px 50px 30px 30px;
            border: none !important;
        }

        .faq-accordion .accordion-item .accordion-body p {
            color: var(--white-color);
            font-size: 1.05rem;
            line-height: 1.7;
            margin: 0;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .faq-section { padding: 80px 0; }
            .faq-accordion .accordion-header .accordion-button { font-size: 1.1rem; padding: 20px 45px 20px 20px; }
            .faq-accordion .accordion-item .accordion-body { padding: 20px; }
        }

        /* Dark Contrast Mode Background Fix */
        html[data-contrast="dark"] .faq-section {
            background-color: #000000 !important;
        }

@keyframes float-faq-bg-1 {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }
        @keyframes float-faq-bg-2 {
            0%, 100% { transform: translateY(0) rotate(5deg); }
            50% { transform: translateY(-12px) rotate(-5deg); }
        }
        .faq-sticker {
            position: absolute;
            z-index: 0;
            opacity: 0.07; /* Reduced for better text readability */
            pointer-events: none;
        }

/* --- Tag heading fixes for accessibility (h4 to h3) --- */
.process-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
html[data-contrast="light"] .process-card h3 {
  color: #000000 !important;
}
.treatment-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .treatment-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
  }
}
