@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');
  body {
    font-family: 'Inter', sans-serif;
    color: #111827;
    line-height: 1.6;
    background-color: #f9fafb;
  }

  h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
  }
  /* Navigation */


  .navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .navbar.scrolled .nav-link,
  .navbar.scrolled .nav-brand h1, .navbar.scrolled .text-base {
    color: #111827 !important;
  }

  .navbar.scrolled .nav-auth-pill {
    background-color: #f3f4f6 !important;
  }

  .navbar.scrolled .nav-auth-pill .nav-auth-name {
    color: #111827 !important;
  }

  .navbar.scrolled .nav-auth-pill .nav-auth-sub {
    color: #059669 !important;
  }

  .navbar.scrolled .nav-auth-pill .nav-auth-chevron {
    color: #6b7280 !important;
  }

  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  @media (min-width: 640px) {
    .nav-container {
      height: 80px;
      padding: 0 1.5rem;
    }
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-brand img {
    height: 36px;
    width: auto;
  }

  @media (min-width: 640px) {
    .nav-brand img {
      height: 48px;
    }
  }

  .nav-brand h1 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
  }

  @media (min-width: 640px) {
    .nav-brand h1 {
      font-size: 1.5rem;
    }
  }

  .nav-menu {
    display: none;
  }

  @media (min-width: 1024px) {
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
  }

  .nav-link {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #10b981;
  }

  .nav-link.active {
    color: #10b981;
    font-weight: 600;
  }

  .nav-actions {
    display: none;
  }

  @media (min-width: 1024px) {
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
  }

  /* Mobile Menu */
  .mobile-menu {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
  }

  .mobile-menu.open {
    max-height: 520px;
    opacity: 1;
  }

