@charset "UTF-8";
/* CSS Document */

      @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

      :root {
        --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
        --font-serif: 'Lora', Georgia, serif;
        
        /* Color Palette */
        --color-teal-dark: #003640;
        --color-teal: #085F73;
        /*--color-teal-medium: #11788E;*/
        --color-teal-medium: #06a6ac;
        --color-teal-light: #EAF2F4;
        --color-coral: #DE6B7E;
        --color-coral-dark: #C54C5E;
        --color-coral-light: #FDF1F3;
        --color-gold: #DCA03F;
        --color-gold-light: #FAF4E8;
        --color-dark: #1F2E35;
        --color-gray: #5A6D77;
        --color-gray-light: #EBF1F3;
        --color-gray-ultra-light: #F6F9FA;
        --color-taupe-bg: #E8DCD2;
        --color-taupe-text: #5C4D43;

        --container-max-width: 1200px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
        --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), ...;
        --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05);
        --radius-sm: 4px;
        --radius-md: 8px;
        --radius-lg: 16px;
        --radius-full: 9999px;
      }

      /* Basic Resets */
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      body {
        font-family: var(--font-sans);
        color: var(--color-dark);
        background-color: #ffffff;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      h1, h2, h4, .serif-text {
        font-family: var(--font-serif);
          line-height: 1.2em;
      }

      h3 {
        font-family: var(--font-sans);
        font-weight: 600;
        line-height: 1.2em;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      /* Utilities */
      .container {
        max-width: var(--container-max-width);
        margin: 0 auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .section-padding {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
      }
.section-padding2 {
    padding-bottom: 4.5rem;
}

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.75rem;
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border-radius: var(--radius-sm);
        border: none;
        cursor: pointer;
        transition: var(--transition);
      }

      .btn-primary {
        background-color: var(--color-teal);
        color: #ffffff;
      }

      .btn-primary:hover {
        background-color: var(--color-teal-dark);
        box-shadow: 0 4px 12px rgba(8, 95, 115, 0.25);
        transform: translateY(-1px);
      }

      .badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-radius: var(--radius-sm);
        margin-bottom: 1.25rem;
      }

      .badge-coral {
        background-color: var(--color-coral-light);
        color: var(--color-coral-dark);
      }

/*.badge-coral {
    background-color: #f19aa7;
    color: #15424c;
}*/
      .badge-teal {
        background-color: var(--color-teal-light);
        color: var(--color-teal);
      }

      .badge-gray {
        background-color: var(--color-gray-light);
        color: var(--color-gray);
      }

      .text-center {
        text-align: center;
      }

      .accent-line-title {
        font-size: 2.3rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        margin-bottom: .75rem;
        position: relative;
      }
    .accent-line-title2 {
        font-size: 2.3rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        margin-bottom: 2.5rem;
        position: relative;
      }

      /* --- HEADER & NAVIGATION --- */
      .site-header {
        background-color: #ffffff;
        position: sticky;
        top: 0;
        z-index: 100;
        border-bottom: 9px solid #f2eae4;
        box-shadow:  1px 1px 8px #eaeaea;
      }

      .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0rem;
        padding-bottom: .2rem;
      }

      .logo-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .logo-text {
        display: flex;
        flex-direction: column;
      }

      .logo-brand {
        width: 265px;
      }

      .logo-accent {
        font-family: var(--font-sans);
        font-size: 0.625rem;
        letter-spacing: 0.15em;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--color-coral-dark);
        margin-top: 0.15rem;
      }

      .site-nav {
        display: flex;
        align-items: center;
        gap: 2.25rem;
        margin-left: auto;
        margin-right: 2.5rem;
      }

      .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-link {
        font-size: 0.9375rem;
        font-weight: 500;
        color: var(--color-teal-dark);
        position: relative;
        padding: 0.25rem 0;
      }

      .nav-link:hover {
        color: var(--color-coral);
      }

      .nav-link::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--color-coral);
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
      }

      .nav-link:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .btn-contact {
        background-color: var(--color-teal);
        color: #ffffff;
        font-size: 0.75rem;
        padding: 0.55rem 1.25rem;
        border-radius: var(--radius-sm);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 700;
      }

      .btn-contact:hover {
        background-color: var(--color-teal-dark);
      }

      /* Hamburguer Menu CSS Icon */
      .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
      }

      .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--color-teal-dark);
        border-radius: var(--radius-full);
        transition: var(--transition);
      }

      /* --- HERO SECTION --- */
      .hero-section {
        background: linear-gradient(145deg, #edf3fd 0%, #c2cee2 100%);
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        overflow: hidden;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3.5rem;
        align-items: center;
      }

      .hero-badge {
        font-size: 0.6875rem;
      }

      .hero-title {
        font-size: 3rem;
        font-weight: 500;
        line-height: 1.15;
        color: var(--color-teal-dark);
        margin-bottom: 1.5rem;
        letter-spacing: -0.015em;
      }

      .hero-title em {
        font-family: var(--font-serif);
        font-style: italic;
        color: var(--color-coral);
        font-weight: 600;
      }

      .hero-title span {
        font-family: var(--font-serif);
        font-weight: 400;
      }

      .hero-description {
        font-size: 1.0625rem;
        color: var(--color-gray);
        margin-bottom: 2.25rem;
        max-width: 520px;
        line-height: 1.7;
      }

      .hero-image-wrapper {
        position: relative;
        border-top-left-radius: 30px;
        border-bottom-right-radius: 30px;
        overflow: hidden;
        border: 4px solid #ffffff;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        background-color: #f1f5f9;
        aspect-ratio: 8.5 / 9;
      }

      .hero-img {
        opacity: 0.95;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .image-credit {
        position: absolute;
        bottom: 10px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.8);
        padding: 2px 8px;
        border-radius: var(--radius-sm);
        font-size: 0.625rem;
        color: var(--color-gray);
        font-family: var(--font-sans);
      }

      /* --- ABOUT WCIA --- */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: flex-start;
      }

      .about-title-block h2 {
        font-size: 2.3rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        margin-top: 0.5rem;
      }

      .about-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }

      .about-card {
        padding: 1.25rem 0;
      }

      .about-card h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--color-teal);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .about-card p {
        font-size: 0.9375rem;
        line-height: 1.7;
        color: var(--color-gray);
      }

      .about-intro-text {
        font-size: 1.15rem;
        line-height: 1.6;
        color: var(--color-gray);
        margin-top: 1rem;
      }

      /* --- COMPREHENSIVE TREATMENT --- */
      .treatment-section {
        background: linear-gradient(to right, #c7d1d3, #afc1c4);
        border-top: 1px solid var(--color-gray-light);
        border-bottom: 1px solid var(--color-gray-light);
      }

      .treatment-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        margin-top: 1rem;
      }

      .treatment-card {
        background-color: #ffffff;
        border-radius: var(--radius-md);
        padding: 2.25rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        border-bottom: 4px solid transparent;
      }

      .treatment-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
      }

      .treatment-card:nth-child(1) {
        border-bottom-color: var(--color-coral);
      }

      .treatment-card:nth-child(2) {
        border-bottom-color: var(--color-teal);
      }

      .treatment-card:nth-child(3) {
        border-bottom-color: #d8b595;
      }

      .card-icon-container {
        width: 48px;
        height: 48px;
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
      }

      .treatment-card:nth-child(1) .card-icon-container {
        background-color: var(--color-coral-light);
        color: var(--color-coral-dark);
      }

      .treatment-card:nth-child(2) .card-icon-container {
        background-color: var(--color-teal-light);
        color: var(--color-teal);
      }

      .treatment-card:nth-child(3) .card-icon-container {
        background-color: var(--color-gold-light);
        color: #ca8c75;
      }

      .card-title {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--color-teal);
        margin-bottom: 1.25rem;
      }

      .card-list {
        list-style: none;
        font-size: 0.875rem;
        color: var(--color-gray);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .card-list li {
        position: relative;
        padding-left: 1.25rem;
      }

      .card-list li::before {
        content: "•";
        color: var(--color-gray);
        position: absolute;
        left: 0;
        font-weight: bold;
      }
      .card-list li a {
        color: #ca9d75;
        font-weight: 500;
}
      .card-list li a:hover {
        color: var(--color-teal);
        font-weight: 500;
}

      .treatment-card:nth-child(1) .card-list li::before {
        color: var(--color-coral);
      }
      .treatment-card:nth-child(2) .card-list li::before {
        color: var(--color-teal);
      }
      .treatment-card:nth-child(3) .card-list li::before {
        color: var(--color-gold);
      }

      /* --- ROBOTIC SURGERY SEGMENT --- */
      .surgical-section {
        background: linear-gradient(to right, #d2dadc, #e1e7e8);
      }

      .surgical-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .surgical-image-wrapper {
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 4px solid var(--color-gray-ultra-light);
        box-shadow: var(--shadow-lg);
        position: relative;
        aspect-ratio: 4 / 3.25;
      }

      .surgical-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .surgical-title {
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        line-height: 1.2;
        margin-bottom: 1.25rem;
      }

      .surgical-intro {
        font-size: 0.9375rem;
        color: var(--color-gray);
        line-height: 1.7;
        margin-bottom: 2rem;
      }

      .bullets-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .bullet-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .bullet-icon {
        width: 22px;
        height: 22px;
        border-radius: var(--radius-full);
        background-color: var(--color-teal-light);
        color: var(--color-teal);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0.15rem;
      }

      .bullet-content h4 {
        font-family: var(--font-sans);
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--color-teal-dark);
        margin-bottom: 0.25rem;
      }

      .bullet-content p {
        font-size: 0.875rem;
        color: var(--color-gray);
        line-height: 1.5;
      }

      /* --- MEET THE TEAM --- */
      .team-section {
        background-color: #ffffff;
        border-top: 1px solid var(--color-gray-light);
      }

      .team-header {
        margin-bottom: 3.5rem;
      }

      .team-title {
        font-size: 2.3rem;
        color: var(--color-teal-dark);
        font-weight: 600;
      }

      .profile-cards {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
      }

      .profile-row {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 3rem;
        align-items: flex-start;
        background-color: transparent;
        border: none;
        padding: 0;
      }

      .profile-img-container {
        width: 100%;
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 4px solid #ffffff;
        aspect-ratio: 1 / 1.33;
      }

      .profile-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
        display: block; 
      }

      .profile-info h3 {
        font-size: 1.6rem;
        color: var(--color-teal);
        font-weight: 600;
        border-bottom: 5px solid var(--color-gray-light);
        padding-bottom: 0.75rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
      }

      .profile-info h3 span {
        font-size: 0.6875rem;
        font-family: var(--font-sans);
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background-color: var(--color-teal-light);
        color: var(--color-teal);
        padding: 0rem 0.6rem;
        border-radius: var(--radius-sm);
        vertical-align: middle;
      }

      .profile-med-info {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
      }

      .profile-left-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .profile-category h4 {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--color-teal);
        margin-bottom: 0.4rem;
      }

      .profile-category p, .profile-category ul {
        font-size: 0.875rem;
        color: var(--color-gray);
        line-height: 1.6;
        list-style: none;
      }

      .profile-bullet-list {
        display: flex;
        flex-direction: column;
        gap: .6rem;
        font-size: 0.875rem;
        color: var(--color-gray);
        list-style: none;
      }

      .profile-bullet-list li {
        position: relative;
        padding-left: 1.25rem;
        line-height: 1.6;
      }

      .profile-bullet-list li::before {
        content: "—";
        position: absolute;
        left: 0;
        color: var(--color-coral);
        font-weight: bold;
      }

      /* --- COMMITMENT BANNER --- */
      .commitment-section {
        background-color: #ffffff;
        padding-top: 0rem;
        padding-bottom: 3rem;
      }

      .commitment-banner {
        background-color: #e5d4c6;
        color: var(--color-taupe-text);
        text-align: center;
        border-radius: var(--radius-lg);
        padding: 3.5rem 2.5rem;
        box-shadow: var(--shadow-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
      }

      .commitment-icon {
        background-color: rgba(255, 255, 255, 0.4);
        width: 52px;
        height: 52px;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--color-coral-dark);
        border: 1px solid rgba(255, 255, 255, 0.6);
      }

      .commitment-banner h2 {
        font-size: 2.3rem;
        font-weight: 600;
        color: #403026;
        margin-bottom: 1.25rem;
      }

      .commitment-banner p {
        font-size: 1rem;
        max-width: 820px;
        line-height: 1.7;
        color: #4B3D34;
      }

      /* --- COMMON QUESTIONS (FAC) --- */
      .faq-section {
        background: linear-gradient(to top, #f8f6f5, #f2e7de);
        border-top: 1px solid var(--color-gray-light);
      }

      .faq-header {
        margin-bottom: 2rem;
      }

      .faq-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 800px;
        margin: 0 auto;
      }

      .accordion-item {
        background-color: #e2ecef;
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.02);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
      }

      .accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.75rem;
        cursor: pointer;
        user-select: none;
        transition: var(--transition);
      }

      .accordion-header:hover {
        background-color: rgba(0, 0, 0, 0.02);
      }

      .accordion-header h3 {
        font-family: var(--font-sans);
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--color-teal-dark);
      }

      .accordion-icon {
        width: 16px;
        height: 16px;
        color: var(--color-teal);
        transition: transform 0.3s ease;
      }

      .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
        background-color: transparent;
        border-top: 1px solid transparent;
      }

      .accordion-inner {
        padding: 1.25rem 1.75rem;
        font-size: 0.875rem;
        color: var(--color-gray);
        line-height: 1.6;
      }

      /* Accordion open state classes via JS */
      .accordion-item.active {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
      }

      .accordion-item.active .accordion-content {
        max-height: 1000px; /* high enough limit */
        transition: max-height 0.35s cubic-bezier(1, 0, 1, 0);
        border-top-color: var(--color-gray-light);
      }

      .accordion-item.active .accordion-icon {
        transform: rotate(180deg);
      }

      /* --- RECOVERY REFERENCE GUIDE --- */
      .recovery-section {
                background: linear-gradient(to bottom, #f8f6f5, #ffffff);
        /*border-top: 1px solid var(--color-gray-light);*/
      }

      .recovery-heading-block {
        text-align: center;
        max-width: 650px;
        margin: 0 auto 3rem auto;
      }

      .recovery-heading-block h2 {
        font-size: 2.3rem;
        color: var(--color-teal-dark);
        margin-bottom: 0.75rem;
        font-weight: 600;
      }

      .recovery-heading-block p {
        font-size: 0.9375rem;
        color: var(--color-gray);
      }

      .table-responsive {
        width: 100%;
        overflow-x: auto;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--color-gray-light);
      }

      .recovery-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        font-size: 0.875rem;
      }

      .recovery-table th {
        background-color: var(--color-teal-dark);
        color: #ffffff;
        font-weight: 700;
        padding: 1.15rem 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        font-size: 0.75rem;
        border-bottom: 1px solid var(--color-teal-dark);
      }

      .recovery-table td {
        padding: .9rem 1.5rem;
        border-bottom: 1px solid var(--color-gray-light);
        color: var(--color-gray);
        line-height: 1.5;
        vertical-align: top;
      }

      .recovery-table tr:last-child td {
        border-bottom: none;
      }

      .recovery-table tbody tr {
        transition: var(--transition);
      }

      .recovery-table tbody tr:hover {
        background-color: rgba(0, 0, 0, 0.03);
      }

      .recovery-table tr:nth-child(even) {
        background-color: #e2ecef;
      }

      .condition-cell {
        font-weight: 700;
        color:  var(--color-coral-dark)!important;
        white-space: nowrap;
      }

      .surgery-cell strong {
        font-weight: 600;
        color: var(--color-teal);
      }

      .stay-cell {
        font-weight: 500;
        color: var(--color-teal-dark);
        white-space: nowrap;
      }

      .recovery-note {
        font-size: 0.75rem;
        font-style: italic;
        color: var(--color-gray);
        margin-top: 1.25rem;
        text-align: center;
      }

      /* --- LOCATIONS SECTION --- */
      .locations-section {
        background: linear-gradient(to right, #e0e9f6, #c6d2e8);
        border-top: 1px solid var(--color-gray-light);
        border-bottom: 1px solid var(--color-gray-light);
      }

      .locations-grid {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 3.5rem;
        align-items: center;
      }

      .locations-info h2 {
        font-size: 2.3rem;
        color: var(--color-teal-dark);
        margin-bottom: 2rem;
        font-weight: 600;
      }

      .address-block {
        margin-bottom: 2.25rem;
      }
      .lastitem {margin-bottom: 0rem!important;}

      .address-block h3 {
        font-family: var(--font-sans);
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--color-teal-dark);
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .address-block p {
        font-size: 0.875rem;
        color: var(--color-gray);
        line-height: 1.6;
      }

      .address-contact {
        margin-top: 0.75rem;
        font-size: 0.8125rem;
      }

      .coming-soon-label {
        font-size: 0.625rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        background-color: #e0ffff;
        color: #06a6ac;
        padding: 0.15rem 0.4rem;
        border-radius: var(--radius-sm);
        margin-left: 0.5rem;
        font-weight: bold;
      }

      .map-wrapper {
        background-color: #edf3f6;
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 4px solid #ffffff;
        box-shadow: var(--shadow-lg);
      }

      .map-svg {
        display: block;
      }

      /* --- HOSPITALS & PARTNERS --- */
      .partners-section {
        background: linear-gradient(to right, #eaf0fa, #f3f8fe);
        border-bottom: 1px solid var(--color-gray-light);
      }

      .partners-grid {
        display: grid;
        grid-template-columns: 280px 100px 120px; /* let's build standard flex grid */
        display: flex;
        justify-content: space-between;
        gap: 3rem;
      }

      .partners-title-col {
        flex: 1;
        /*max-width: 250px;*/
		min-width: 307px;
      }

      .partners-title-col h2 {
        font-size: 1.75rem;
        color: var(--color-teal-dark);
        font-weight: 600;
      }

      .partner-col {
        flex: 1;
        border-left: 1px solid rgba(8, 95, 115, 0.15);
        padding-left: 1.5rem;
      }

      .partner-col h3 {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--color-teal);
        margin-bottom: 1rem;
        /*border-bottom: 2px solid var(--color-teal-light);*/
        padding-bottom: 0.5rem;
      }

      .partner-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        font-size: 0.8125rem;
        color: var(--color-gray);
		line-height: 1.1rem
      }

      /* --- FOOTER --- */
      .site-footer {
        background-color: #ffffff;
        padding-top: 4.5rem;
        padding-bottom: 2rem;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 320px repeat(3, 1fr);
        gap: 4rem;
        margin-bottom: 3.5rem;
      }

      .footer-brand-col {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }

      .footer-brand-logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }    
        .logo-brand-footer {
        width: 265px;
    }

      .footer-brand-desc {
        font-size: 0.8125rem;
        color: var(--color-gray);
        line-height: 1.6;
        max-width: 260px;
      }

      .footer-col h3 {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--color-teal);
        margin-bottom: 1.25rem;
      }

      .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        font-size: 0.8125rem;
        color: var(--color-gray);
      }

      .footer-links a:hover {
        color: var(--color-coral);
        transform: translateX(3px);
      }

      .footer-bottom {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 2rem;
       /* display: flex;
        align-items: center;
        justify-content: center;*/
          text-align: center;
        font-size: 0.75rem;
        color: var(--color-gray);
      }

    .auua-logo {width: 155px; margin-bottom: 0;
     display: block;/* Forces the image to behave like a structural block */
     margin: 15px auto 8px auto; /* Top margin is 0, Left/Right is Auto (centers it), Bottom is 1rem (adds spacing) */    
    }
    .auua-text {font-size: .9rem; color: var(--color-teal); font-weight:600; margin: 0px auto 18px auto;
}
    .auua-text a:link {text-decoration: none; color: #04696d}
    .auua-text a:hover {text-decoration: underline;}
    
.bullet {
    text-indent: -13px;
    margin-left: 13px;
    margin-bottom: 4px;
}
p a:link {font-weight: 600; color: #04696d;}
p a:hover {font-weight: 600; color: #04696d; text-decoration: underline;}

#about, #treatment, #team, #questions, #locations, #resources {
  scroll-margin-top: 80px; /* adjust to match your header height */
}

#trials {
  scroll-margin-top: 180px; 
}
.recovery-table th {
  white-space: nowrap;
}
ol.accordionli {margin-left: 20px;}

.accordionli li {margin-top: 4px;}

.boxtext {font-size: 0.875rem;
    color: var(--color-gray); margin-top: -10px; margin-bottom: 5px;}

      /* --- RESPONSIVE WORK --- */
      @media (max-width: 1024px) {  
 /*       .logo-brand-footer {
        width: 59%;
    }*/
          .hero-title {
          font-size: 2.5rem;
        }

        .hero-grid {
          gap: 2rem;
        }

        .treatment-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .profile-row {
          grid-template-columns: 180px 1fr;
          gap: 2rem;
        }

        .profile-med-info {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2.5rem;
        }
      }

      @media (max-width: 768px) {
      .recovery-table th {
  white-space: wrap;
}
          .recovery-table td {
    padding: 1rem .5rem;
}
          .section-padding {
          padding-top: 3.5rem;
          padding-bottom: 3.5rem;
        }

        /* Nav Hamburguer Menu */
        .menu-toggle {
          display: flex;
        }

        .site-nav {
          position: fixed;
          top: 73px; /* Header height offset */
          left: 0;
          width: 100%;
          background-color: #ffffff;
          flex-direction: column;
          padding: 2.5rem 1.5rem;
          border-bottom: 1px solid var(--color-gray-light);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
          opacity: 0;
          pointer-events: none;
          transform: translateY(-10px);
          transition: var(--transition);
          gap: 2rem;
          margin: 0;
        }

        .site-nav.active {
          opacity: 1;
          pointer-events: auto;
          transform: translateY(0);
        }

        .nav-links {
          flex-direction: column;
          align-items: center;
          gap: 1.5rem;
          width: 100%;
        }

        .header-actions {
          display: none; /* inside hamburger or hidden for mobile */
        }

        /* Hamburger Morph Animation */
        .menu-toggle.active span:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
          opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
        }

        /* Sections Grid stacking */
        .hero-grid {
          grid-template-columns: 1fr;
          gap: 2.5;
          text-align: center;
        }

        .hero-description {
          margin-left: auto;
          margin-right: auto;
        }

        .about-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

        .about-content-grid {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        .surgical-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }

        .profile-row {
          grid-template-columns: 1fr;
          padding: 0;
          gap: 1.5rem;
        }

        .profile-img-container {
         /* max-width: 200px; */
          margin: 0 auto;
        }

        .locations-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }

        .partners-grid {
          flex-direction: column;
          gap: 2rem;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          gap: 2.5rem;
        }
      }
/* Patient Education & Resources */
.education-intro {
  font-size: 1rem;
  color: var(--color-text-secondary, #6b7280);
  margin: 0.5rem auto 2rem;
  max-width: 560px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.education-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.education-card:hover {
  border-color: #06a6ac;
  box-shadow: 0 2px 12px rgba(6, 166, 172, 0.12);
}

.education-card-icon {
  width: 38px;
  height: 38px;
  background: #e8f6f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #085F73;
}

.education-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
}

.education-card-cta {
  font-size: 0.8rem;
  color: #06a6ac;
  margin-top: auto;
  font-weight: 500;
}
.education-section {
    background: linear-gradient(to bottom, #fbe6e2, #fff 90%);   
}
/* Clinical Trials Subsection */

.clinical-trials-block {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  /*border-top: 1px solid rgba(220, 150, 180, 0.3);*/
}

.clinical-trials-block-temporary {
  text-align: center;
  /*border-top: 1px solid rgba(220, 150, 180, 0.3);*/
}

.clinical-trials-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-teal);
  margin: 0 0 0.5rem;
}

.clinical-trials-coming-soon {
  font-size: 1rem;
  color: #06a6ac;
  font-style: italic;
  margin: 0;
}
.clinical-trials-icon {
    background-color: #085F73;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a3d4d4;
    margin: auto auto 1.5rem auto;
}

/* Infusion Centers */
.infusion-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 60px;
}

.infusion-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infusion-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-teal-dark);
    line-height: 1.2;
    margin-bottom: .5rem;
}

.infusion-intro {
  font-size: .9375rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
  margin-bottom: .75rem;
}

.infusion-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.infusion-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.infusion-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f6f6;
  color: #085F73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.infusion-item-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}

.infusion-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--color-gray-ultra-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 6 / 2.8;
}

.infusion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.coming-soon-text {
  font-size: 0.95rem;
  color: #06a6ac;
  font-style: italic;
  margin: 0;
}
.recovery-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-teal);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .infusion-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
