
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f6fb;
      color: #222;
    }

    .container {
      max-width: 750px;
      margin: 0 auto;
      padding: 20px;
    }

    .card {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      padding-bottom: 25px;
    }

    .banner {
      width: 100%;
      aspect-ratio: 3 / 2;
      max-height: 30vw;
      min-height: 140px;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    h1 {
      margin: 20px 0 10px;
      color: #d40000;
      text-align: center;
      font-size: 34px;
      letter-spacing: 1px;
    }

    .subtitle {
      text-align: center;
      font-size: 18px;
      color: #666;
      margin: 0 20px 20px;
    }

    .content {
      padding: 0 22px;
      font-size: 18px;
      line-height: 1.8;
      text-align: justify;
      color: #333;
    }

    .content p {
      margin-bottom: 15px;
    }

    .content p:last-child {
      margin-bottom: 0;
    }

    .btn-wrap {
      text-align: center;
      padding-top: 15px;
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 12px 22px;
      color: white;
      text-decoration: none;
      border-radius: 10px;
      font-weight: bold;
      transition: 0.2s ease;
    }

    .btn-back {
      background: navy;
    }

    .btn-gallery {
      background: #1565C0;
    }

    .btn:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }

    @media (max-width: 600px) {
      .container {
        padding: 12px;
      }

      h1 {
        font-size: 28px;
      }

      .subtitle,
      .content {
        font-size: 16px;
      }

      
      .btn-wrap {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      
      .btn {
        width: 80%;
      }
    }
  