
    html, body, .page, .page-content, .page-wrapper, .main-content, .content, .template-page, .page-header, .page-title, .main-page-title {
      background: #ffffff !important;
      color: #111827 !important;
    }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: #1f2937;
      background: #f8fafc;
    }
    .lifun-page * {
      box-sizing: border-box;
    }
    .lifun-page a {
      color: #0f766e;
      text-decoration: none;
    }
    .lifun-page a:hover {
      text-decoration: underline;
    }
    .lifun-page img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .lifun-page h1, .lifun-page h2, .lifun-page h3 {
      color: #111827;
      line-height: 1.2;
      margin-top: 0;
    }
    .lifun-page p {
      margin-top: 0;
    }
    .lifun-page table {
      font-size: 15px;
    }
    .reading-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      align-items: stretch;
    }
    .reading-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 245px;
      padding: 22px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
      text-align: left;
    }
    .reading-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      margin-top: 18px;
      padding: 10px 14px;
      border-radius: 6px;
      background: #0f766e;
      color: #ffffff !important;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      text-decoration: none !important;
    }
    @media (max-width: 768px) {
      .lifun-page h1 {
        font-size: 34px !important;
      }
      .lifun-page h2 {
        font-size: 26px !important;
      }
      .reading-grid {
        grid-template-columns: 1fr;
      }
      .reading-card {
        min-height: auto;
      }
    }
  