body {
      background: linear-gradient(135deg, #0f0f0f, #1b1b1b);
      color: #f5f5f5;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    h2 {
      font-weight: 600;
      letter-spacing: 1px;
    }

    .img-fluid {
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .img-fluid:hover {
      box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }

    .container {
      background: rgba(255, 255, 255, 0.05);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
    }