    html {
      scroll-behavior: smooth;
    }

    /* Shutter Effect */
    .shutter-card {
      position: relative;
      overflow: hidden;
      height: 400px;
      width: 100%;
      max-width: 350px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      background: #fff;
    }
    .shutter-image img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      display: block;
    }
    .shutter-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      transform: translateY(-100%);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      color: #fff;
      transition: transform 0.6s ease-in-out;
      text-align: center;
      padding: 20px;
    }
    .shutter-card:hover .shutter-overlay {
      transform: translateY(0);
    }
    .card-title {
      background: #fff;
      color: #4C1D95;
      text-align: center;
      font-size: 1.4rem;
      font-weight: bold;
      padding: 10px 8px;
      border-top: 1px solid #e5e7eb;
    }
    .shutter-content h3 {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .shutter-content p {
      font-size: 0.85rem;
      color: #e5e7eb;
    }