
    /* Clean, neutral, encyclopedia-like stylesheet inspired by a Wikipedia layout
       This intentionally avoids logos or copyrighted assets. */
    :root {
      --bg: #ffffff;
      --text: #202122;
      --muted: #6a6a6a;
      --link: #0645ad;
      --border: #dcdcdc;
    }

    [data-theme="dark"] {
      --bg: #0b1220;
      --text: #e6eef8;
      --muted: #9aa7bb;
      --link: #74a7ff;
      --border: #203040;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Gotham', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    /* Top header */
    header {
      border-bottom: 0px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .site-title {
      font-weight: 700;
      font-size: 20px;
    }

    

    

    

    /* Layout */
    .container {
      max-width: 1100px;
      margin: 22px auto;
      padding: 0 18px;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 28px;
    }

    /* Sidebar */
    .sidebar {
      font-size: 13px;
    }

    .sidebar .section {
      background: transparent;
      padding: 6px 0;
    }

    .sidebar a {
      color: var(--link);
      text-decoration: none;
    }

    /* Content */
    .article {
      background: transparent;
    }

    .article h1 {
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 28px;
      margin: 0 0 8px;
    }

    .article .byline {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .toc {
      border: 1px solid var(--border);
      padding: 10px;
      background: #fafafa;
      font-size: 14px;
      margin: 14px 0;
    }

    .toc h2 {
      margin: 0 0 8px;
      font-size: 14px;
    }

    .toc ul {
      margin: 0;
      padding-left: 18px;
    }

    .lead {
      font-size: 16px;
      margin-bottom: 12px;
    }

    .section-heading {
      font-size: 20px;
      margin-top: 18px;
      margin-bottom: 6px;
      font-weight: 600;
    }

    p {
      margin: 0 0 12px;
      font-family: Georgia;
    }

    

    

    

    

    .infobox {
      float: right;
      width: 260px;
      margin-left: 18px;
      border: 1px solid var(--border);
      background: #fafafa;
      padding: 10px;
      font-size: 13px;
    }

    .infobox img {
      max-width: 100%;
      height: auto;
      display: block;
      margin-bottom: 8px;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .container {
        grid-template-columns: 1fr;
      }
      .infobox {
        float: none;
        width: 100%;
        margin: 0 0 12px;
      }
    }

    @media (max-width: 560px) {
      header {
        padding: 10px;
      }
      
    }

      /* Footer */
        .footer {
        background: #111;
        color: #fff;
        padding: 60px 20px 20px;
        }

        .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        }

        .footer h3 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #fff;
        }

        .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        }

        .footer ul li {
        margin-bottom: 10px;
        }

        .footer ul li a {
        color: #bbb;
        text-decoration: none;
        transition: color 0.3s ease;
        }

        .footer ul li a:hover {
        color: #fff;
        }

        

        

        

        .footer-bottom {
        text-align: center;
        border-top: 1px solid #333;
        margin-top: 40px;
        padding-top: 20px;
        font-size: 14px;
        color: #aaa;
        }

    /* Libra AI Footer Column */
        
        
        

        .goals {
            background: white;
            padding: 0px 0px;
            color: white; /* makes text visible if background is dark */
        }
        

        .goal {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .goal.reverse {
            flex-direction: row-reverse;
        }

        .goal-text {
            flex: 1;
        }

        .goal-text h2 {
            font-size: 20px;
            color: var(--text);
            margin-bottom: 10px;
        }

        .goal-text p {
            font-size: 17px;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
            font-family: Georgia;
        }

        .goal-link {
            font-size: 18px;
            font-weight: bold;
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .goal-link:hover {
            color: #1e40af;
        }

        .goal-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .goal-image img {
            max-width: 50%;
            height: auto;
            border-radius: 12px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .goal, .goal.reverse {
            flex-direction: column;
            text-align: center;
            }
            .goal-image {
            margin-top: 30px;
            }
        }
