.blog-detail {
      max-width: 800px;
      margin: 0 auto;
      padding: 80px 20px 40px;
      font-family: 'Arial', sans-serif;
      color: #333333;
      line-height: 1.6;
    }

    .blog-detail__post {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      padding: 30px;
    }

    .blog-detail__header {
      margin-bottom: 25px;
    }

    .blog-detail__title {
      font-size: 38px;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-detail__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      font-size: 14px;
      color: #7f8c8d;
    }

    .blog-detail__date {
      margin-right: 15px;
      white-space: nowrap;
    }

    .blog-detail__keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .blog-detail__keyword {
      background-color: #e9ecef;
      color: #555555;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 13px;
      white-space: nowrap;
    }

    .blog-detail__cover {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 30px;
      display: block;
    }

    .blog-detail__content {
      font-size: 17px;
      line-height: 1.7;
      color: #333333;
    }

    .blog-detail__content p {
      margin-bottom: 20px;
    }

    .blog-detail__content h2 {
      font-size: 28px;
      color: #2c3e50;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-detail__content h3 {
      font-size: 24px;
      color: #2c3e50;
      margin-top: 25px;
      margin-bottom: 12px;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-bottom: 20px;
      padding-left: 25px;
    }

    .blog-detail__content li {
      margin-bottom: 8px;
    }

    .blog-detail__content a {
      color: #007bff;
      text-decoration: none;
    }

    .blog-detail__content a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .blog-detail {
        padding: 70px 15px 30px;
      }

      .blog-detail__post {
        padding: 20px;
      }

      .blog-detail__title {
        font-size: 28px;
        margin-bottom: 10px;
      }

      .blog-detail__meta {
        flex-direction: column;
        align-items: flex-start;
      }

      .blog-detail__date {
        margin-right: 0;
        margin-bottom: 8px;
      }

      .blog-detail__keywords {
        margin-top: 5px;
      }

      .blog-detail__cover {
        max-height: 250px;
        margin-bottom: 20px;
      }

      .blog-detail__content {
        font-size: 16px;
      }

      .blog-detail__content h2 {
        font-size: 24px;
        margin-top: 25px;
        margin-bottom: 12px;
      }

      .blog-detail__content h3 {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .blog-detail__title {
        font-size: 24px;
      }

      .blog-detail__content h2 {
        font-size: 20px;
      }

      .blog-detail__content h3 {
        font-size: 18px;
      }

      .blog-detail__keyword {
        font-size: 12px;
        padding: 4px 8px;
      }
    }
  

        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; margin: 0 auto; max-width: 800px; padding: 20px; }
        h1, h2, h3 { color: #0056b3; }
        h1 { font-size: 2.5em; text-align: center; margin-bottom: 30px; }
        h2 { font-size: 1.8em; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 40px; }
        h3 { font-size: 1.4em; margin-top: 25px; }
        p { margin-bottom: 15px; text-align: justify; }
        ul { list-style-type: disc; margin-left: 20px; margin-bottom: 15px; }
        ol { list-style-type: decimal; margin-left: 20px; margin-bottom: 15px; }
        a { color: #007bff; text-decoration: none; }
        a:hover { text-decoration: underline; }
        .toc { background-color: #f9f9f9; border: 1px solid #ddd; padding: 20px; margin-bottom: 30px; border-radius: 8px; }
        .toc h2 { margin-top: 0; border-bottom: none; padding-bottom: 0; color: #0056b3; }
        .toc ul { list-style-type: none; padding: 0; margin: 0; }
        .toc ul li { margin-bottom: 10px; }
        .faq-item { background-color: #fefefe; border: 1px solid #eee; padding: 15px; margin-bottom: 15px; border-radius: 8px; }
        .faq-item h3 { margin-top: 0; margin-bottom: 10px; color: #0056b3; }
        .highlight { background-color: #fff3cd; padding: 5px; border-radius: 4px; font-weight: bold; }
        .cta-button { display: inline-block; background-color: #28a745; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; margin-top: 20px; text-align: center; }
        .cta-button:hover { background-color: #218838; text-decoration: none; }