body {
    margin: 0;
    padding: 0;
    background: #f6f6f6;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper {
    width: 360px;
    height: 560px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .card-header {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #225439;
    padding: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  .card-image {
    width: 100%;
    height: auto;
    flex-shrink: 0;
  }
  
  .card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 20px 8px;
    color: #222;
  }
  
  .card-description {
    font-size: 14px;
    color: #555;
    margin: 0 20px;
    line-height: 1.5;
  }
  