
    body {
      margin: 0;
      padding: 0;
      font-family: 'Helvetica Neue', sans-serif;
      background-color: #f9f8f7;
      color: #1a1a1a;
      line-height: 1.6;
    }

    h1 {
      font-family: 'EB Garamond', serif;
      font-size: 4rem;
      font-style: italic;
      text-align: center;
      margin: 5rem 1rem 3rem;
    }
    
 
    nav a {
      margin-right: 20px;
      text-decoration: none;
      color: #1a1a1a;
      font-size: 0.9rem;
    }
    footer {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 4rem;
  padding-bottom: 1rem;
}
nav {
      text-align: center;
      margin-bottom: 2rem;
    }

    nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      letter-spacing: -1.5px;
    }

    nav a:hover {
      text-decoration: underline;
    }
    .arrow {
      font-size: 1rem;
      color: #4b3b82;
      text-decoration: none;
      border: 1px solid #4b3b82;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      transition: all 0.3s ease;
      letter-spacing: -1.5px;
    }
    .arrow:hover {
      background: #4b3b82;
      color: white;
    }


    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1.5rem;
    }

    .image-block {
      margin: 5rem 0;
    }

    .image-block img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
      display: block;
    }

    .caption {
      font-size: 0.9rem;
      font-style: italic;
      color: #666;
      margin-top: 0.7rem;
      max-width: 90%;
    }

    .left {
      width: 70%;
      margin-left: 0;
      margin-right: auto;
    }

    .right {
      width: 70%;
      margin-right: 0;
      margin-left: auto;
    }

    .full {
      width: 100%;
    }

    /* Lightbox CSS only */
    .lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }

    .lightbox:target {
      display: flex;
    }

    .close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      font-size: 2rem;
      color: white;
      text-decoration: none;
    }

    footer {
      text-align: center;
      font-size: 0.8rem;
      color: #aaa;
      margin: 6rem 0 2rem;
    }

    @media (max-width: 768px) {
      .left, .right, .full {
        width: 100%;
      }

      h1 {
        font-size: 2.5rem;
        margin: 3rem 1rem 2rem;
      }
    }
  