   /* Reset and base */
    * { margin:0; padding:0; box-sizing: border-box; }
    body 
    { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; background:#f2f2f2; color:#333; }
/* Back button */
.redirect-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4c6ef5, #15aabf);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(21, 170, 191, 0.4);
  position: relative;
  
  overflow: hidden;
}

.redirect-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.5s ease-in-out;
}

.redirect-button:hover::before {
  left: 130%;
}

.redirect-button:hover {
  box-shadow: 0 6px 16px rgba(21, 170, 191, 0.6);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .redirect-button {
    font-size: 1rem;
    padding: 10px 20px;
    }}

    /* heading Style  */
    h1,h2,h3 { color:#111; margin-bottom:0.5rem; }
    p { margin-bottom:1rem; }

    /* Container */
    .container { max-width: 900px; margin: 2rem auto; padding: 0 1rem; }

    /* Card style sections */
    .card { background:#fff; padding:2rem; margin-bottom:2rem; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); opacity:0; transform: translateY(30px); transition: all 0.8s ease; }
    .card img { max-width:100%; border-radius: 10px; margin-bottom:1rem; }

    /* Fade-in on scroll */
    .card.show { opacity:1; transform: translateY(0); }

    /* Responsive */
    @media(max-width:600px){
        .card { padding:1rem; }
        h1 { font-size:1.8rem; }
        h2 { font-size:1.4rem; }
    }