 body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      background: rgba(255, 255, 255, 0.53);
      color: #333;
    }

    .blog-hero {
      background: url('https://images.unsplash.com/photo-1581090700227-1e8e8b5c5f34?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .blog-hero h1 {
      font-size: 48px;
      margin: 0;
    }

    .blog-section {
      padding: 60px 0;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .blog-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-content h3 {
      margin-top: 0;
      color: #007bff;
    }

    .blog-content p {
      margin: 10px 0 20px;
    }

    .read-more {
      display: inline-block;
      padding: 10px 20px;
      background: #0dcaf0;
      color: #000;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold;
    }

    .site-footer {
      background: #111;
      color: #ccc;
      text-align: center;
      padding: 20px 0;
      font-size: 15px;
      margin-top: 40px;
    }