body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.page-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 40px;
}

/* Left side — Logo + tagline */
.brand-block {
  flex: 1;
}

.brand-title {
  margin: 0;
  text-align: center; /* optional */
}

.brand-logo {
  width: clamp(180px, 40vw, 500px);
  height: auto;
}

.tagline {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  color: #555;
  max-width: 520px;
}

/* Right side — Botpress webchat container */
.chat-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* #bp-embedded-webchat {
  width: 420px;
  height: 720px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #eee;
  background: #fff;
} */

/* Responsive (stack on small screens) */
@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
