.card {
  width: 800px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(20, 30, 40, 0.08);
  padding: 22px;
}

p.sub {
  margin: 0 0 18px;
  text-align: center;
  color: #000;
  font-size: 13px;
}

h2{font-size:1.2rem !important;margin-bottom:33px !important;text-align:center}
sup {
  color: #aaa;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 13px;
  color: #000;
  padding-bottom: 6px;
}

input[type=number],
input[type=text] {
  width: 100%;
  padding: 8px 0;
  text-indent: 10px;
  border: 1px solid #e0e6ee;
  border-radius: 8px;
  font-size: 14px;
}

.row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #000;
  cursor: pointer;
}

.results {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: #fbfdff;
  border: 1px solid #eef6ff;
}

.result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #eef5fb;
}

.result-line:last-child {
  border-bottom: 0;
}

.val {
  font-weight: 700;
  font-size: 16px;
}

.note {
  font-size: 12px;
  color: #555;
  margin-top: 10px;
}

.footerEDC {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.small {
  font-size: 15px;
  color: #000;
  font-weight: bold;
}

button {
  font-size: 10px;
}

@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .card {
    width: auto;
  }
}
