* {
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
      color: #2b2b2b;
      background-color: #f5efe2;
      line-height: 1.8;
      font-size: 16px;
      margin: 0;
    }

    /* Modern Clean Header */
    header.site-header {
      background: #ffffff;
      border-bottom: 1px solid #d8dcce;
      padding: 16px 24px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .brand-logo-container img {
      max-height: 74px;
      width: auto;
      display: block;
      margin: 0 auto;
      transition: transform 0.2s ease;
    }

    .brand-logo-container img:hover {
      transform: scale(1.02);
    }

    /* Modern Sticky Navigation Bar */
    .sticky-nav-bar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ffffff;
      border-bottom: 1px solid #d8dcce;
      padding: 12px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    }

    .sticky-nav-bar h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      color: #2b2b2b;
    }

    .nav-select select {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #5A7D9A;
      background-color: #ffffff;
      border: 1px solid #d8dcce;
      border-radius: 6px;
      padding: 8px 16px;
      cursor: pointer;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .nav-select select:hover {
      border-color: #5A7D9A;
    }

    /* Editorial Wrapper & Layout */
    .site-wrapper {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .content-block {
      background: #ffffff;
      padding: 48px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #d8dcce;
      margin-bottom: 30px;
    }

    /* Hero Section Styling */
    .hero-banner {
      position: relative;
      background-color: #1a1a1a;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .hero-banner img {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0.85;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #ffffff;
      padding: 20px;
    }

    .hero-overlay h1 {
      font-size: 40px;
      font-weight: 700;
      margin: 0 0 10px 0;
      letter-spacing: -0.5px;
    }

    .hero-overlay h2 {
      font-size: 20px;
      font-weight: 400;
      margin: 0;
      color: #e3d8c8;
    }

    /* Typography Overrides */
    h2 {
      font-size: 24px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 36px 0 16px 0;
      letter-spacing: -0.3px;
    }

    h2:first-of-type {
      margin-top: 0;
    }

    p {
      margin-bottom: 20px;
      font-size: 16px;
      color: #333;
    }

    

    .cta-container {
      text-align: center;
      background: #ffffff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
      border: 1px solid #d8dcce;
    }

    .cta-container h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .cta-container p {
      color: #666;
      font-size: 0.95rem;
      max-width: 540px;
      margin: 0 auto 24px auto;
    }

    .launch-btn {
      display: inline-block;
      background-color: #4d7c6f;
      color: #ffffff;
      padding: 14px 32px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: background-color 0.2s ease, transform 0.1s ease;
    }

    .launch-btn:hover {
      background-color: #3b6056;
      color: #ffffff;
      text-decoration: none;
      transform: translateY(-1px);
    }

    .lead-paragraph {
      font-size: 18px;
      color: #1a1a1a;
      font-weight: 500;
      line-height: 1.7;
    }

    /* Action Buttons */
    .btn-primary {
      background-color: #4d7c6f;
      border-color: #4d7c6f;
      border-radius: 6px;
      font-weight: 600;
      padding: 12px 24px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: background-color 0.2s ease, transform 0.1s ease;
    }

    .btn-primary:hover, .btn-primary:focus {
      background-color: #3b6056;
      border-color: #3b6056;
      transform: translateY(-1px);
    }

    /* Footer styling */
    footer.site-footer {
      text-align: center;
      padding: 30px 20px;
      font-size: 14px;
      color: #666;
      border-top: 1px solid #d8dcce;
      margin-top: 40px;
      background: #ffffff;
      border-radius: 8px;
    }

    footer.site-footer a {
      color: #4d7c6f;
      font-weight: 600;
      text-decoration: none;
    }

    footer.site-footer a:hover {
      text-decoration: underline;
    }

    td,
    th {
      vertical-align: top;
    }

    /* ------ In Article Navigation ----------- */
    .article-journey {
      margin: 2.5rem 0 3rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0,0,0,.12);
    }

    .article-journey ol {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: .75rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .article-journey li {
      display: flex;
      align-items: center;
    }

    .article-journey li:not(:last-child)::after {
      content: "→";
      margin-left: .75rem;
      opacity: .3;
    }

    .article-journey a {
      display: inline-flex;
      align-items: baseline;
      gap: .4rem;
      color: inherit;
      text-decoration: none;
      opacity: .55;
      transition: opacity .2s ease;
    }

    .article-journey a:hover {
      opacity: 1;
    }

    .article-journey .step {
      font-size: .7rem;
      letter-spacing: .08em;
      font-weight: 600;
    }

    .article-journey .active a {
      opacity: 1;
      font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #5A7D9A; display: block; margin-bottom: 0.5rem;
    }

    .article-journey .active span:last-child {
      border-bottom: 2px solid currentColor;
      padding-bottom: .2rem;
    }

    */

    @media (max-width: 768px) {
      .hero-overlay h1 {
        font-size: 28px;
      }
      .hero-overlay h2 {
        font-size: 16px;
      }
      .content-block {
        padding: 24px 20px;
      }
    }