.aispb-wrap {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  font-family: system-ui, sans-serif;
}

.aispb-sub {
  color: #555;
  margin-bottom: 20px;
}

.aispb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 900px) {
  .aispb-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.aispb-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
}

.aispb-card h3 {
  margin-top: 0;
}

.aispb-card label {
  font-weight: 600;
  display: block;
  margin-top: 12px;
}

.aispb-card input,
.aispb-card textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.aispb-card textarea {
  min-height: 80px;
}

.aispb-btn {
  margin-top: 15px;
  padding: 12px 18px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.aispb-btn:hover {
  background: #1e40af;
}
