 body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      background: #f5f7fa;
      color: #333;
    }
    header {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
      padding: 40px 20px;
      text-align: center;
      animation: fadeInDown 1s ease-out;
    }
    header h1 {
      margin: 0;
      font-size: 2.5rem;
    }
    header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    .featured-img {
      width: 100%;
      max-height: 450px;
      object-fit: cover;
      animation: fadeIn 1s ease-in;
    }
    .content {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      animation: slideUp 1s ease-out;
    }
    h2 {
      color: #1a237e;
    }
    .read-more {
      display: inline-block;
      margin-top: 20px;
      background: #1a237e;
      color: white;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .read-more:hover {
      background: #3949ab;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #eceff1;
      font-size: 14px;
    }

    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes slideUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      .content {
        padding: 20px;
      }
    }