.blog-detail {
      padding-top: 10px;
      padding-bottom: 40px;
      background-color: #f8f9fa;
      min-height: 80vh;
    }

    .blog-detail__post {
      max-width: 800px;
      margin: 20px auto;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      padding: 30px;
    }

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

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

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

    .blog-detail__date {
      font-style: italic;
    }

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

    .blog-detail__keywords-label {
      font-weight: bold;
      color: #555;
    }

    .blog-detail__keyword {
      background-color: #ecf0f1;
      color: #34495e;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 13px;
      white-space: nowrap;
    }

    .blog-detail__cover-image {
      width: 100%;
      height: 0;
      padding-bottom: 56.25%; 
      max-height: 400px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      border-radius: 8px;
      margin-bottom: 30px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .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: #34495e;
      margin-top: 25px;
      margin-bottom: 12px;
      font-weight: bold;
      line-height: 1.4;
    }

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

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

    @media (max-width: 768px) {
      .blog-detail__post {
        margin: 15px auto;
        padding: 20px;
        border-radius: 8px;
      }

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

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

      .blog-detail__keywords {
        justify-content: flex-start;
      }

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

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

      .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;
      }

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

    @media (max-width: 480px) {
      .blog-detail__post {
        padding: 15px;
        margin: 10px;
      }

      .blog-detail__title {
        font-size: 24px;
      }

      .blog-detail__meta {
        font-size: 13px;
      }

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

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

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

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

        body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0 auto; max-width: 900px; padding: 20px; background-color: #f9f9f9; }
        h1, h2, h3 { color: #0056b3; }
        h1 { font-size: 2.5em; text-align: center; margin-bottom: 30px; }
        h2 { font-size: 1.8em; margin-top: 40px; margin-bottom: 20px; border-bottom: 2px solid #eee; padding-bottom: 10px; }
        h3 { font-size: 1.4em; margin-top: 25px; margin-bottom: 15px; }
        p { margin-bottom: 15px; }
        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: #e9f5ff; border-left: 5px solid #0056b3; padding: 20px; margin-bottom: 30px; }
        .toc h2 { color: #0056b3; margin-top: 0; border-bottom: none; padding-bottom: 0; }
        .toc ul { list-style-type: none; padding: 0; margin: 0; }
        .toc li { margin-bottom: 10px; }
        .highlight { background-color: #fff3cd; padding: 10px; border-radius: 5px; margin-bottom: 15px; }
        .cta-button { display: block; width: fit-content; margin: 30px auto; padding: 15px 30px; background-color: #28a745; color: white; text-align: center; border-radius: 5px; font-size: 1.2em; font-weight: bold; text-transform: uppercase; transition: background-color 0.3s ease; }
        .cta-button:hover { background-color: #218838; text-decoration: none; }
        .faq-item { background-color: #ffffff; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; padding: 20px; }
        .faq-item h3 { margin-top: 0; color: #0056b3; }
        .note { background-color: #f8d7da; color: #721c24; padding: 10px; border-radius: 5px; margin-bottom: 15px; border: 1px solid #f5c6cb; }