body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: #f4f6f9; /* subtle business background */
  color: #333;
}

/* Wrapper for assistant */
.assistant-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Assistant Box */
.assistant-box {
  width: 100%;
  max-width: 900px; /* wider for 2-column results */
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

/* Logo */
.main-logo {
  display: block;
  margin: 20px auto;
  max-width: 180px;
  height: auto;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

/* Input + Button */
input, button {
  width: 80%;
  padding: 12px;
  font-size: 1rem;
  margin: 12px auto;
  display: block;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  background: #0073e6;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #005bb5;
}

/* Response Area */
#response {
  margin-top: 30px;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.result-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.result-card:hover {
  transform: translateY(-5px);
}

.result-card h3 {
  margin-top: 0;
  color: #0073e6;
}

/* Cursor Logo */
#cursorLogo {
  position: absolute;
  width: 40px;
  height: auto;
  pointer-events: none;
  z-index: 9999;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
  .assistant-box { max-width: 95%; padding: 20px; }
  input, button { width: 95%; font-size: 0.9rem; }
  #response { font-size: 0.9rem; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .assistant-box { max-width: 85%; }
  input, button { width: 85%; font-size: 1rem; }
}

@media (min-width: 1025px) {
  .assistant-box { max-width: 900px; }
  input, button { width: 70%; font-size: 1.1rem; }
}
