    /* General Styles */
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fafafa;
      color: #333;
      line-height: 1.7;
      margin: 0;
      padding: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* Header / Navbar */
    header.site-header {
      background: #2c5aa0;
      color: #fff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: bold;
      font-family: 'Inter', sans-serif;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
    }

    nav ul li a {
      color: #fff;
      font-weight: 500;
      transition: opacity 0.3s;
    }

    nav ul li a:hover {
      opacity: 0.8;
    }

    /* Blog Wrapper */
    .blog-wrapper {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Blog Header */
    .blog-header {
      text-align: left;
      margin-bottom: 20px;
    }

    .blog-header h1 {
      font-size: 2.8rem;
      margin-bottom: 10px;
      color: #222;
    }

    .blog-header .subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 10px;
    }

    .meta {
      font-size: 0.95rem;
      color: #777;
    }

    .meta span {
      margin-right: 20px;
    }

    .meta i {
      margin-right: 6px;
      color: #2c5aa0;
    }

    /* Hero Image */
    .hero-image img {
      width: 100%;
      border-radius: 8px;
      margin: 20px 0;
      max-height: 420px;
      object-fit: cover;
    }

    /* Content Layout */
    .content-layout {
      display: grid;
      grid-template-columns: 3fr 1fr;
      gap: 40px;
    }

    /* Blog Content */
    .blog-content h2, .blog-content h3 {
      margin-top: 30px;
      color: #222;
    }

    .blog-content p {
      margin: 15px 0;
      color: #444;
    }

    /* Sidebar */
    .sidebar {
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      height: fit-content;
    }

    .sidebar h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .author-box, .share-box {
      margin-bottom: 30px;
    }

    .share-icons a {
      margin-right: 15px;
      font-size: 1.4rem;
      color: #555;
      transition: color 0.3s;
    }

    .share-icons a:hover {
      color:#2c5aa0;
    }

    /* Footer */
  /* Footer */
footer {
  background: #1e293b;  /* Updated color */
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
}

footer .footer-links {
  margin: 15px 0;
}

footer .footer-links a {
  color: #fff;
  margin: 0 12px;
  font-weight: 500;
  transition: opacity 0.3s;
}

footer .footer-links a:hover {
  opacity: 0.8;
}

footer p {
  font-size: 0.9rem;
  margin-top: 15px;
}
