/* CSS Reset & Base - Same as main page */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      /* AllCareCo Brand Colors - Matching React version exactly */
      --background: 30 50% 98%;
      --foreground: 200 25% 20%;
      
      --card: 0 0% 100%;
      --card-foreground: 200 25% 20%;
      
      /* Primary - Coral/Salmon from logo */
      --primary: 12 76% 61%;
      --primary-foreground: 0 0% 100%;
      
      /* Secondary - Teal from logo */
      --secondary: 174 42% 41%;
      --secondary-foreground: 0 0% 100%;
      
      --muted: 30 30% 94%;
      --muted-foreground: 200 15% 45%;
      
      /* Accent - Light teal */
      --accent: 174 35% 92%;
      --accent-foreground: 174 42% 30%;
      
      --border: 30 20% 88%;
      --input: 30 20% 88%;
      
      /* Custom brand tokens */
      --coral: 12 76% 61%;
      --coral-light: 12 76% 92%;
      --coral-dark: 12 60% 45%;
      --teal: 174 42% 41%;
      --teal-light: 174 35% 92%;
      --teal-dark: 174 45% 28%;
      --cream: 30 50% 98%;
      --warm-gray: 30 10% 55%;
      
      --radius: 0.75rem;
    }
    
    html { scroll-behavior: smooth; }
    
    body {
      font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      line-height: 1.2;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    a { text-decoration: none; color: inherit; }
    
    img { max-width: 100%; height: auto; }
    
    /* Animations */
    @keyframes fade-in {
      0% { opacity: 0; transform: translateY(10px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    
    .animate-fade-in {
      animation: fade-in 0.5s ease-out forwards;
    }
    
    /* Shadows - Same as main page */
    .shadow-soft {
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
    }
    
    .shadow-medium {
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    
    .shadow-coral {
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    
    .shadow-teal {
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    
    /* Buttons - Same as main page */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
      font-family: inherit;
    }
    
    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1.125rem;
    }
    
    .btn-primary {
      background-color: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    
    .btn-primary:hover {
      background-color: hsl(var(--coral-dark));
      transform: translateY(-2px);
    }
    
    .btn-secondary {
      background-color: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    
    .btn-secondary:hover {
      background-color: hsl(var(--teal-dark));
      transform: translateY(-2px);
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid hsl(var(--secondary));
      color: hsl(var(--secondary));
    }
    
    .btn-outline:hover {
      background-color: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
    }
    
    .btn-outline-light {
      background-color: transparent;
      border: 2px solid hsl(var(--primary-foreground));
      color: hsl(var(--primary-foreground));
    }
    
    .btn-outline-light:hover {
      background-color: hsla(0, 0%, 100%, 0.1);
    }
    
    /* Header - Same as main page */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background-color: hsla(30, 50%, 98%, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid hsl(var(--border));
    }
    
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 5rem;
    }
    
    .logo img {
      height: 3.5rem;
      width: auto;
    }
    
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2rem;
    }
    
    @media (min-width: 1024px) {
      .nav-desktop { display: flex; }
    }
    
    .nav-link {
      color: hsla(200, 25%, 20%, 0.8);
      font-weight: 500;
      transition: color 0.2s;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    
    .nav-link:hover {
      color: hsl(var(--primary));
    }
    
    .header-cta {
      display: none;
      align-items: center;
      gap: 1rem;
    }
    
    @media (min-width: 1024px) {
      .header-cta { display: flex; }
    }
    
    .phone-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: hsl(var(--secondary));
      font-weight: 600;
    }
    
    .mobile-menu-btn {
      display: block;
      padding: 0.5rem;
      background: none;
      border: none;
      cursor: pointer;
      color: hsl(var(--foreground));
    }
    
    @media (min-width: 1024px) {
      .mobile-menu-btn { display: none; }
    }
    
    .mobile-nav {
      display: none;
      padding: 1.5rem 0;
      border-top: 1px solid hsl(var(--border));
      animation: fade-in 0.3s ease-out;
    }
    
    .mobile-nav.active {
      display: block;
    }
    
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .mobile-nav-links .nav-link {
      padding: 0.5rem 0;
      text-align: left;
    }
    
    .mobile-nav-cta {
      padding-top: 1rem;
      margin-top: 1rem;
      border-top: 1px solid hsl(var(--border));
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    /* Dropdown */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; font-family: inherit; }
    .nav-dropdown-content {
      display: none; position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
      background-color: hsl(var(--background)); border: 1px solid hsl(var(--border));
      border-radius: var(--radius); min-width: 10rem; z-index: 60;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    .nav-dropdown-content.active { display: block; }
    .nav-dropdown-item {
      display: block; padding: 0.5rem 1rem; color: hsl(var(--foreground));
      font-weight: 500; font-size: 0.875rem; transition: background-color 0.2s;
    }
    .nav-dropdown-item:hover { background-color: hsl(var(--muted)); }
    .mobile-services-toggle { display: flex; align-items: center; gap: 0.25rem; width: 100%; font-family: inherit; }
    .mobile-services-sub { display: flex; flex-direction: column; gap: 0.5rem; }
    
    /* Hero Section - About Page */
    .hero {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute;
      inset: 0;
    }
    
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, hsla(200, 25%, 20%, 0.9), hsla(200, 25%, 20%, 0.7), hsla(200, 25%, 20%, 0.4));
    }
    
    .hero-content {
      position: relative;
      z-index: 10;
      padding: 8rem 0;
      max-width: 42rem;
    }
    
    .badge {
      display: inline-block;
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }
    
    .badge-primary {
      background-color: hsla(12, 76%, 61%, 0.2);
      color: hsl(var(--primary-foreground));
    }
    
    .badge-coral {
      background-color: hsl(var(--coral-light));
      color: hsl(var(--primary));
    }
    
    .badge-teal {
      background-color: hsl(var(--teal-light));
      color: hsl(var(--secondary));
    }
    
    .hero .badge {
      margin-bottom: 1.5rem;
    }
    
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: hsl(var(--cream));
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }
    
    @media (min-width: 640px) {
      .hero h1 {
        font-size: 3rem;
      }
    }
    
    @media (min-width: 768px) {
      .hero h1 {
        font-size: 3.75rem;
      }
    }
    
    .text-primary {
      color: hsl(var(--primary));
    }
    
    .text-secondary {
      color: hsl(var(--secondary));
    }
    
    .hero p {
      font-size: 1.25rem;
      color: hsla(30, 50%, 98%, 0.9);
      margin-bottom: 2rem;
    }
    
    /* Section Styles */
    .section {
      padding: 6rem 0;
    }
    
    .section-bg {
      background-color: hsl(var(--background));
    }
    
    .section-muted {
      background-color: hsla(30, 30%, 94%, 0.3);
    }
    
    .section-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 4rem;
    }
    
    .section-title {
      font-size: 1.875rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .section-title {
        font-size: 2.25rem;
      }
    }
    
    .section-desc {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
    }
    
    /* Grid Layouts */
    .grid-2 {
      display: grid;
      gap: 4rem;
      align-items: center;
    }
    
    @media (min-width: 1024px) {
      .grid-2 {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .grid-2-cards {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .grid-2-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .grid-4 {
      display: grid;
      gap: 2rem;
    }
    
    @media (min-width: 640px) {
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .grid-4 {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    /* Cards */
    .card {
      background-color: hsl(var(--card));
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
      position: relative;
      overflow: hidden;
    }
    
    .card-blur {
      position: absolute;
      width: 6rem;
      height: 6rem;
      border-radius: 9999px;
      filter: blur(2rem);
      opacity: 0.6;
    }
    
    .card-blur-coral {
      background-color: hsl(var(--coral-light));
      top: -1rem;
      right: -1rem;
    }
    
    .card-blur-teal {
      background-color: hsl(var(--teal-light));
      top: -1rem;
      right: -1rem;
    }
    
    .card-content {
      position: relative;
    }
    
    .icon-box {
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    
    .icon-box-primary {
      background-color: hsl(var(--primary));
      box-shadow: 0 8px 30px -6px hsla(12, 76%, 61%, 0.25);
    }
    
    .icon-box-secondary {
      background-color: hsl(var(--secondary));
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    
    .icon-box svg {
      width: 2rem;
      height: 2rem;
      color: hsl(var(--primary-foreground));
    }
    
    .card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1rem;
    }
    
    .card p {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
    }
    
    /* Value Cards */
    .value-card {
      background-color: hsl(var(--card));
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: 0 4px 20px -4px hsla(200, 25%, 20%, 0.08);
      transition: box-shadow 0.3s;
    }
    
    .value-card:hover {
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    
    .value-icon {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    
    .value-icon-primary {
      background-color: hsla(12, 76%, 61%, 0.1);
      color: hsl(var(--primary));
    }
    
    .value-icon-secondary {
      background-color: hsla(174, 42%, 41%, 0.1);
      color: hsl(var(--secondary));
    }
    
    .value-icon svg {
      width: 1.75rem;
      height: 1.75rem;
    }
    
    .value-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 0.5rem;
    }
    
    .value-card p {
      color: hsl(var(--muted-foreground));
    }
    
    /* Image Container */
    .img-container {
      position: relative;
    }
    
    .img-rounded {
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 8px 30px -6px hsla(200, 25%, 20%, 0.12);
    }
    
    .img-rounded img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .floating-badge {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background-color: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
      border-radius: var(--radius);
      padding: 1rem 1.5rem;
      box-shadow: 0 8px 30px -6px hsla(174, 42%, 41%, 0.25);
    }
    
    .floating-badge p:first-child {
      font-weight: 600;
    }
    
    .floating-badge p:last-child {
      font-size: 0.875rem;
      opacity: 0.9;
    }
    
    /* Content Text */
    .content-text h2 {
      font-size: 1.875rem;
      font-weight: 700;
      color: hsl(var(--foreground));
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .content-text h2 {
        font-size: 2.25rem;
      }
    }
    
    .content-text p {
      font-size: 1.125rem;
      color: hsl(var(--muted-foreground));
      margin-bottom: 1.5rem;
    }
    
    .content-text p:last-of-type {
      margin-bottom: 0;
    }
    
    /* Checklist */
    .checklist {
      display: grid;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    
    @media (min-width: 640px) {
      .checklist {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .checklist-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .checklist-item svg {
      width: 1.25rem;
      height: 1.25rem;
      color: hsl(var(--secondary));
      flex-shrink: 0;
    }
    
    .checklist-item span {
      font-weight: 500;
      color: hsl(var(--foreground));
    }
    
    /* CTA Section */
    .cta-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--coral)));
      text-align: center;
    }
    
    .cta-section h2 {
      font-size: 1.875rem;
      font-weight: 700;
      color: hsl(var(--primary-foreground));
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 640px) {
      .cta-section h2 {
        font-size: 2.25rem;
      }
    }
    
    .cta-section p {
      font-size: 1.25rem;
      color: hsla(0, 0%, 100%, 0.9);
      margin-bottom: 2rem;
      max-width: 42rem;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      align-items: center;
    }
    
    @media (min-width: 640px) {
      .cta-buttons {
        flex-direction: row;
      }
    }
    
    /* Footer - Same as main page */
    .footer {
      background-color: hsl(var(--foreground));
      color: hsl(var(--background));
      padding: 4rem 0 2rem;
    }
    
    .footer-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
      }
    }
    
    .footer-brand img {
      height: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .footer-brand p {
      color: hsla(30, 50%, 98%, 0.7);
      margin-bottom: 0.5rem;
    }
    
    .footer-tagline {
      font-style: italic;
      color: hsl(var(--primary));
    }
    
    .footer h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      font-family: 'Source Sans 3', sans-serif;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 0.5rem;
    }
    
    .footer-links a {
      color: hsla(30, 50%, 98%, 0.7);
      transition: color 0.2s;
    }
    
    .footer-links a:hover {
      color: hsl(var(--background));
    }
    
    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: hsla(30, 50%, 98%, 0.7);
      margin-bottom: 0.75rem;
      transition: color 0.2s;
    }
    
    .footer-contact a:hover {
      color: hsl(var(--background));
    }
    
    .footer-bottom {
      border-top: 1px solid hsla(30, 50%, 98%, 0.1);
      padding-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      justify-content: space-between;
    }
    
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
      }
    }
    
    .footer-bottom p {
      color: hsla(30, 50%, 98%, 0.7);
      font-size: 0.875rem;
    }
    
    .made-with {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    
    .heart-icon {
      color: hsl(var(--primary));
    }
    
    /* Scroll to Top Button */
    .scroll-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background-color: hsl(var(--secondary));
      color: hsl(var(--secondary-foreground));
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px -4px hsla(174, 42%, 41%, 0.3);
      z-index: 40;
    }
    
    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .scroll-to-top:hover {
      transform: translateY(-4px);
    }
    
    /* Order for grid items */
    .order-1 { order: 1; }
    .order-2 { order: 2; }
    
    @media (min-width: 1024px) {
      .lg-order-1 { order: 1; }
      .lg-order-2 { order: 2; }
    }