
  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Source+Sans+Pro:wght@400;600&family=Caveat:wght@700&display=swap');

  /* --- PAGE SETUP --- */
  body {
      background-color: #000000; /* PITCH BLACK BACKGROUND */
      margin: 0;
      padding: 0;
      font-family: 'Source Sans Pro', sans-serif;
      color: #2c2c2c;
      line-height: 1.7;
  }

  #journal-wrapper {
      display: flex;
      justify-content: center;
      padding: 60px 20px;
      min-height: 100vh;
      background-color: #000000;
  }

  /* --- THE PAPER SHEET --- */
  .journal-sheet {
      width: 100%;
      max-width: 850px;
      background-color: #fffcf5; /* Cream Paper */
      box-shadow: 
          0 0 20px rgba(255, 255, 255, 0.05), 
          0 10px 0 -5px #fffcf5, 
          0 20px 0 -10px #fffcf5, 
          0 30px 40px rgba(0,0,0,0.5);
      position: relative;
      padding: 80px 60px;
      box-sizing: border-box;
      margin-bottom: 60px;
  }

  /* The Red Margin Line */
  .journal-sheet::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 60px;
      width: 2px;
      background-color: #ffcccc;
      z-index: 0;
  }

  /* The Blue Horizontal Lines */
  .journal-content-layer {
      position: relative;
      z-index: 1;
      background-image: linear-gradient(#e1e8f0 1px, transparent 1px);
      background-size: 100% 32px;
      line-height: 32px;
  }

  /* --- TYPOGRAPHY --- */
  h1.main-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: #1a1a1a;
      margin-top: 0;
      margin-bottom: 40px;
      line-height: 1.2;
      border-bottom: 3px solid #1a1a1a;
      padding-bottom: 20px;
      text-align: center;
  }

  .subtitle {
      text-align: center;
      font-family: 'Source Sans Pro', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #666;
      margin-top: -30px;
      margin-bottom: 50px;
      font-size: 0.9rem;
  }

  h2.section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #2c3e50;
      margin-top: 64px;
      margin-bottom: 32px;
      font-weight: 700;
      background-color: #fffcf5;
      display: inline-block;
      padding-right: 15px;
  }

  h3.sub-title {
      font-family: 'Source Sans Pro', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #444;
      margin-top: 32px;
      margin-bottom: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  p, li {
      margin-bottom: 0;
      font-size: 1.1rem;
  }

  /* --- HIGHLIGHTER EFFECT --- */
  .highlight-marker {
      background: linear-gradient(120deg, rgba(255, 225, 0, 0.4) 0%, rgba(255, 225, 0, 0.1) 100%);
      padding: 0 5px;
      border-radius: 3px;
  }

  /* --- STICKY NOTE (TIPS) --- */
  .sticky-note {
      background-color: #fff740;
      color: #333;
      padding: 20px;
      font-family: 'Caveat', cursive;
      font-size: 1.4rem;
      line-height: 1.4;
      transform: rotate(-1deg);
      box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
      margin: 32px 0;
      border-bottom-right-radius: 20px 5px;
      position: relative;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
  }

  .sticky-note strong {
      display: block;
      font-weight: 700;
      margin-bottom: 5px;
      text-decoration: underline;
  }

  .sticky-note::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 45%;
      width: 60px;
      height: 20px;
      background-color: rgba(255, 255, 255, 0.4);
      border-left: 1px solid rgba(0,0,0,0.05);
      border-right: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      transform: rotate(2deg);
  }

  /* --- COMPARISON TABLE LOOK --- */
  .comparison-box {
      border: 2px solid #2c3e50;
      margin: 32px 0;
      background: #fff;
  }

  .comparison-header {
      background: #2c3e50;
      color: #fff;
      padding: 10px 20px;
      font-family: 'Playfair Display', serif;
      font-weight: bold;
      font-size: 1.2rem;
  }

  .comparison-content {
      padding: 20px;
      line-height: 1.6;
  }

  /* --- LIST STYLES --- */
  ul {
      list-style: none;
      padding-left: 0;
      margin-top: 0;
  }

  ul li {
      position: relative;
      padding-left: 25px;
  }

  ul li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #e74c3c;
      font-weight: bold;
      font-size: 1.5rem;
      line-height: 30px;
  }

  /* --- FAQ SECTION --- */
  .faq-wrapper {
      margin-top: 64px;
      border-top: 4px double #ccc;
      padding-top: 32px;
  }

  .faq-item {
      margin-bottom: 32px;
  }

  .faq-q {
      font-weight: 700;
      color: #e74c3c;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
  }

  /* --- MOBILE --- */
  @media (max-width: 768px) {
      .journal-sheet { padding: 40px 20px; }
      .journal-sheet::before { left: 20px; }
      h1.main-title { font-size: 2rem; }
      .sticky-note { width: 100%; transform: rotate(0); }
  }
  