body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    background: #fff;
    color: #111;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 12;
    background: #f2daf9;
    border-bottom: 5px solid #bbbe33;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  header h1 {
    margin: 0;
    font-size: 3rem;
    color: #bbbe33;
    font-family: "Didot", "Didot LT STD", "Bodoni MT", serif;
    letter-spacing: 0.5cap;
  }

  header img {
    position: absolute;
    right: 16px;
    height: 44px;
    width: auto;
  }

  .wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 16px;
  }

  main {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    align-items: start;
  }

  nav {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    background-color: #f2daf9;
  }

  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    background: #bbbe33;
    border: 1px solid #eee;
  }

  nav a:hover { background: #f2daf9; }

  .content {
    border: 1px solid #eee;
    border-radius: 12px;
    border-color: #2f4e2f;
    padding: 24px;
  }

  .content h2 {
    margin-top: 0;
    color: #2f4e2f;
  }

  .content p {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .cta {
    font-weight: 600;
    margin-top: 24px;
  }

  /* Tablet */
  @media (max-width: 900px) {
    main { grid-template-columns: 1fr; }
    header img { height: 40px; }
  }
  

  /* Phone */
  @media (max-width: 520px) {
    .wrap { padding: 12px; }
    header h1 { font-size: 1.1rem; }
    header img { height: 34px; right: 12px; }
    .content { padding: 18px; }
  }

  