@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Inter:wght@400;500;600&display=block');

  :root {
    --primary-50: hsl(85 75% 96%);
    --primary-100: hsl(84 75% 93%);
    --primary-200: hsl(85 77% 85%);
    --primary-300: hsl(85 77% 75%);
    --primary-400: hsl(84 77% 63%);
    --primary-500: hsl(85 77% 45%);
    --primary-600: hsl(85 80% 35%);
    --secondary-400: hsl(45 90% 60%);
    --text-main: #2D3748;
    --text-muted: #718096;
    --bg-nav: #ffffff;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6, .brand-text {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
  }

  .site-header {
    background: var(--bg-nav);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 1040;
  }

  .brand-text {
    font-size: 1.75rem;
    color: var(--primary-600);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-link-custom {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .btn-cta {
    background-color: var(--primary-400);
    color: #1A202C !important;
    border-radius: 50rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
    display: inline-block;
  }

  /* Playful Theme Overrides */
  .hero-gradient {
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--secondary-400) 100%);
    padding: 4rem 0;
  }

  .card-dramatic {
    border: 2px solid transparent;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: border-color 0.3s ease, transform 0.3s ease;
    background: #fff;
    height: 100%;
  }

  .card-dramatic:hover {
    border-color: var(--primary-500);
    transform: translateY(-5px);
  }

  .icon-sq {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-50);
    margin-bottom: 1rem;
  }

  .section-compact {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .testimonial-scroll {
     overflow-x: auto;
     white-space: nowrap;
     padding-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      min-width: 85%;
      display: inline-block;
      margin-right: 1rem;
      white-space: normal;
    }
  }