.blog-post {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      line-height: 1.8;
      color: #333;
      font-family: 'Poppins', sans-serif;
    }

    .blog-post h1 {
      font-size: 32px;
      color: #1d5c5c;
      margin-bottom: 10px;
    }

    .blog-post .author {
      color: #666;
      font-style: italic;
      margin-bottom: 20px;
    }

    .blog-post img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 25px;
    }

    .blog-post-content h2,
    .blog-post-content h3 {
      color: #1d5c5c;
      line-height: 1.35;
      margin: 32px 0 12px;
    }

    .blog-post-content p,
    .blog-post-content ul,
    .blog-post-content ol,
    .blog-post-content blockquote {
      margin: 0 0 18px;
    }

    .blog-post-content ul,
    .blog-post-content ol {
      padding-left: 24px;
    }

    .blog-post-content blockquote {
      border-left: 4px solid #227a7a;
      background: #f2f8f8;
      padding: 16px 20px;
      border-radius: 0 8px 8px 0;
    }

    .back-button {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 24px;
      background: #227a7a;
      color: white;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
    }

    .back-button:hover {
      background: #195c5c;
    }

    footer {
      background-color: #227a7a;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 50px;
    }

    @media (max-width: 600px) {
      .blog-post {
        margin: 24px auto;
        padding: 0 16px;
      }

      .blog-post h1 {
        font-size: 28px;
        line-height: 1.3;
      }

      .blog-post img {
        max-height: 300px;
      }

      .back-button {
        width: 100%;
        text-align: center;
      }

      footer {
        margin-top: 32px;
        padding: 16px;
      }
    }
