.inquiry-card .section-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.inquiry-card textarea.form-control {
  font-size: 0.86rem;
  line-height: 1.45;
}

.char-counter {
  user-select: none;
}

.notice {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(248, 250, 252, 0.9);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
}

.confirm-box {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.9rem;
  background: #fff;
  overflow: hidden;
}

.confirm-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.confirm-row:first-child {
  border-top: none;
}

.confirm-label {
  color: #64748b;
  font-weight: 700;
  font-size: 0.78rem;
}

.confirm-value {
  color: #0f172a;
  font-weight: 600;
}

.confirm-message {
  white-space: normal;
}

@media (max-width: 575.98px) {
  .confirm-row {
    grid-template-columns: 1fr;
  }
}