* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.6;
      background: url('https://img.freepik.com/premium-photo/two-faceted-glass-glasses-wooden-table-with-traditional-indian-drink-masala-chai_163994-713.jpg?ga=GA1.1.1703918310.1749121798&semt=ais_items_boosted&w=740') no-repeat center center fixed;
      background-size: cover;
      color: #f4f4f4;
      padding: 40px;
    }

    .container {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      padding: 30px;
      max-width: 900px;
      margin: auto;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      animation: fadeIn 2s ease;
    }

    h1 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #fdd835;
    }

    .logo {
      display: block;
      margin: 0 auto 20px;
      width: 60px;
      filter: drop-shadow(2px 2px 2px #222);
    }

    p {
      margin: 20px 0;
      text-align: justify;
      transition: transform 0.3s ease;
    }

    p:hover {
      transform: scale(1.02);
    }

    img.blog-img {
      width: 100%;
      margin: 20px 0;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(255,255,255,0.2);
      transition: transform 0.5s;
    }

    img.blog-img:hover {
      transform: scale(1.03);
    }

    footer {
      margin-top: 30px;
      text-align: center;
      color: #aaa;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    } 

   