/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Base Styles */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f8f9fa;
  color: #333;
  text-align: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1000px;
  padding: 1rem;
  margin: 0 auto;
}

/* Use this if you want centered content */
.container.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Typeform Wrapper */
.typeform-wrapper {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.typeform-wrapper [data-tf-live] {
  width: 100%;
  min-height: 600px;
}

@media (min-width: 768px) {
  .typeform-wrapper [data-tf-live] {
    min-height: 700px;
  }
}

/* Override */
.tf-v1-widget  {
    height: 95% !important;
}

/* Optional: Fallback for JS-disabled browsers */
noscript {
  font-size: 1rem;
  color: #900;
  margin-top: 2rem;
}