/* Font loading with correct paths */
    @font-face {
      font-family: Inter;
      font-style: normal;
      font-weight: 300 900;
      font-display: swap;
      src: url('/fonts/Inter-VariableFont_slnt,wght.woff2') format('woff2');
      font-stretch: normal;
    }
    
    @font-face {
      font-family: Cardo;
      font-style: normal;
      font-weight: 400;
      font-display: swap;
      src: url('/fonts/cardo_normal_400.woff2') format('woff2');
    }
    
    @font-face {
      font-family: Cardo;
      font-style: italic;
      font-weight: 400;
      font-display: swap;
      src: url('/fonts/cardo_italic_400.woff2') format('woff2');
    }
    
    @font-face {
      font-family: Cardo;
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('/fonts/cardo_normal_700.woff2') format('woff2');
    }
    
    /* Basic styles for structure, typography, and colors */
    body {
      font-family: "Inter", sans-serif;
      line-height: 1.55;
      color: #111111;
      background-color: #f9f9f9;
      margin: 0;
    }
    
    .site-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 min(6.5rem, 8vw);
    }
    
    header {
      padding: 20px 0;
      background-color: #f9f9f9; /* Match body background */
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dividing line */
    }
    
    footer {
      padding: 40px 0 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.1); /* Subtle dividing line */
    }
    
    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .site-branding {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .site-title {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 600;
    }
    
    .site-title a {
      text-decoration: none;
      color: #111111;
    }
    
    .logo-link img {
      display: block;
    }
    
    /* Navigation styling to match original */
    .main-navigation {
      display: flex;
      justify-content: flex-end;
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
    }
    
    .nav-menu li {
      position: relative;
    }
    
    .nav-menu a {
      text-decoration: none;
      color: #111111;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 0.6rem 0;
      display: block;
      transition: color 0.3s;
    }
    
    .nav-menu a:hover {
      text-decoration: underline;
      color: #636363;
    }
    
    .nav-menu a[aria-current="page"] {
      font-weight: 600;
      position: relative;
    }
    
    .nav-menu a[aria-current="page"]:after {
      content: "";
      display: block;
      height: 2px;
      width: 100%;
      background-color: currentColor;
      position: absolute;
      bottom: -2px;
      left: 0;
    }
    
    /* Mobile menu button */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    
    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: #111111;
      margin: 5px 0;
      transition: transform 0.3s, opacity 0.3s;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: Cardo, serif;
      font-weight: 400;
      line-height: 1.2;
    }
    
    h1 {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .content {
      padding: 3rem 0;
      max-width: 620px;
      margin: 0 auto;
    }
    
    .footer-columns {
      display: flex;
      gap: 2rem;
    }
    
    .footer-column {
      flex: 1;
    }
    
    .footer-column:first-child {
      flex: 0 0 30%;
    }
    
    .site-tagline {
      color: #636363;
      font-size: 0.9rem;
      margin-top: 0.5rem;
    }
    
    pre {
      background-color: #f0f0f0;
      padding: 1rem;
      border-radius: 5px;
      overflow: auto;
    }
    
    /* Responsive navigation */
    @media (max-width: 768px) {
      .site-header {
        flex-wrap: wrap;
      }
      
      .main-navigation {
        flex-basis: 100%;
        margin-top: 1rem;
      }
      
      .menu-toggle {
        display: block;
        position: absolute;
        right: min(6.5rem, 8vw);
        top: 20px;
      }
      
      .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .footer-columns {
        flex-direction: column;
      }
    }
