  body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #f3f5f9;
      color: #333;
    }
    header {
      background: linear-gradient(135deg, #1a237e, #3949ab);
      color: white;
      padding: 50px 20px;
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }
    header h1 {
      font-size: 2.5rem;
      margin: 0;
    }
    header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    .featured-img {
      width: 100%;
      max-height: 420px;
      object-fit: cover;
      animation: zoomIn 1s ease-out;
    }
    .content {
      max-width: 900px;
      margin: 40px auto;
      background: white;
      padding: 30px 20px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
      animation: slideUp 1s ease-in;
    }
    h2 {
      color: #1a237e;
      margin-top: 30px;
    }
    ul {
      padding-left: 20px;
    }
    ul li {
      margin-bottom: 15px;
    }
    .read-more {
      display: inline-block;
      margin-top: 25px;
      background: #1a237e;
      color: white;
      padding: 10px 18px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .read-more:hover {
      background: #283593;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #eceff1;
      font-size: 14px;
    }

    @keyframes fadeIn {
      0% {opacity: 0;}
      100% {opacity: 1;}
    }
    @keyframes slideUp {
      0% {opacity: 0; transform: translateY(30px);}
      100% {opacity: 1; transform: translateY(0);}
    }
    @keyframes zoomIn {
      0% {transform: scale(1.05); opacity: 0;}
      100% {transform: scale(1); opacity: 1;}
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      .content {
        padding: 20px;
      }
    }