* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: linear-gradient(135deg, #1f1f1f, #3a2a1f);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }

    /* ===== Main Card ===== */
    .card {
      background-color: #3a2a1f;
      border-radius: 20px;
      padding: clamp(30px, 4vw, 60px);
      width: min(90vw, 900px);
      height: min(85vh, 600px);
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Decorative background image */
    .bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.15;
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
    }

    h1 {
      margin-bottom: 10px;
      font-size: 2.5rem;
    }

    p {
      margin-bottom: 25px;
      color: #e6d5c3;
      font-size: 1.05rem;
      line-height: 1.4;
    }

    /* ===== Image Row ===== */
    .images {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .images img {
      width: clamp(70px, 10vw, 100px);
      height: clamp(70px, 10vw, 100px);
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    /* ===== Features ===== */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin-bottom: 30px;
    }

    .feature {
      background: rgba(0, 0, 0, 0.25);
      border-radius: 12px;
      padding: 15px;
      font-size: 0.95rem;
      color: #e6d5c3;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    button {
      background-color: #6f4e37;
      border: none;
      padding: 14px 28px;
      color: #ffffff;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1.05rem;
      transition: background-color 0.2s ease, transform 0.1s ease;
    }

    button:hover {
      background-color: #8b5e3c;
      transform: translateY(-2px);
    }

    .footer {
      margin-top: 30px;
      font-size: 0.85rem;
      color: #cdb9a3;
    }
    /* ===== Site Footer (bottom-left) ===== */
    .site-footer {
      position: absolute;
      bottom: 12px;
      left: 14px;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      pointer-events: none;
    }