.blog-post-section {
        padding: 120px 0 80px;
        background: #f8f9fa;
        min-height: 100vh;
      }

      .blog-post-content {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .blog-post-header {
        text-align: center;
        margin-bottom: 40px;
      }

      .blog-post-meta {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 20px;
      }

      .blog-post-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
      }

      .blog-post-content h2 {
        color: #3498db;
        margin-top: 40px;
        margin-bottom: 20px;
      }

      .blog-post-content h3 {
        color: #2c3e50;
        margin-top: 30px;
        margin-bottom: 15px;
      }

      .blog-post-content p {
        margin-bottom: 20px;
        line-height: 1.8;
        font-size: 1.1rem;
      }

      .blog-post-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
      }

      .blog-post-content li {
        margin-bottom: 10px;
        line-height: 1.6;
      }

      .highlight-box {
        background: #e8f4fd;
        padding: 25px;
        border-radius: 10px;
        margin: 30px 0;
        border-left: 4px solid #3498db;
      }

      .author-info {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin-top: 40px;
        border: 1px solid #e9ecef;
      }

      .related-posts {
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #e9ecef;
      }

      .related-posts h3 {
        color: #2c3e50;
        margin-bottom: 20px;
      }

      .related-posts ul {
        list-style: none;
        padding: 0;
      }

      .related-posts li {
        margin-bottom: 15px;
      }

      .related-posts a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .related-posts a:hover {
        color: #2980b9;
      }

      @media (max-width: 768px) {
        .blog-post-content {
          padding: 30px 20px;
          margin: 0 15px;
        }

        .blog-post-image {
          height: 250px;
        }
      }