body {
  font-family: Arial, sans-serif;
  background: #ffff;
  margin: 0;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 32px;
  color: #1e3c72;
  margin-bottom: 30px;
}

.divider {
  width: 90%;
  height: 2px;
  background: #1e3c72;
  margin: 10px auto 30px auto;
  border-radius: 1px;
}

.container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }


.instruction-image {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 20px;
}

.instruction-text {
  font-size: 20px;
  color: #333;
  margin: 0 auto 30px;
  max-width: 90%;
  line-height: 1.6;
}

.btn-div {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  font-size: 18px;
  /* background: linear-gradient(to right, #32477d, #5d709d); */
  color: black;
  text-decoration: none;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid transparent;
  transition: background 0.3s ease;
  margin-bottom: 20px;
  margin-top: 20px;
  width: 220px;
}

.btn-div:hover {
  background-color: #617461d2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

/* 👇 Responsive for smaller mobile screens */
@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  .instruction-image {
    max-width: 200px;
  }

  .instruction-text {
    font-size: 16px;
  }

  .btn-div {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
  }
}


.card-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  /* background: linear-gradient(to right, #000000, #434343); */
  border-radius: 12px;
  color: black;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.card-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 16px;
}


@media (max-width: 600px) {
  h1 {
    font-size: 20px;
  }

  .container {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }

  .card-div {
    font-size: 16px;
    height: 80px;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    margin-left: 8px;
  }

  .btn-div {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px;
    margin-top: 30px;
  }
}