:root {
  --brand: #0b6efd;
  --muted: #666;
  --bg: #f7f8fb;
  --card: #ffffff;
}
* {
  box-sizing: border-box;
}
body {
  font-family: Inter, Roboto, Arial, sans-serif;
  margin: 0;
  background: var(--bg);
  color: #222;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}
.site-header {
  background: linear-gradient(90deg, #0b6efd22, #6f42c122);
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.logo {
  margin: 0;
  color: var(--brand);
}
.hero {
  background: var(--card);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.04);
  text-align: center;
}
.hero h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
  color: #111;
}
.hero p {
  color: #444;
  margin-bottom: 18px;
}
.site-header {
  background: linear-gradient(90deg, #0b6efd22, #6f42c122);
  padding: 20px 0;
  border-bottom: 1px solid #e6eef7;
}
.site-header .logo {
  font-weight: 700;
}
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}
.info {
  margin-top: 20px;
}
.question-form {
  background: var(--card);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.04);
}
.question-form label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.question-form input,
.question-form select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}
.site-footer {
  padding: 16px 0;
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
}

/* Load the same fonts referenced by the exported MHTML (remote woff2) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 300;
  src: url("/static/fonts/inter-v12-latin-ext-300.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("/static/fonts/inter-v12-latin-ext-600.woff2") format("woff2");
}
@font-face {
  font-family: "Twemoji Country Flags";
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E007F;
  src: url("/static/fonts/TwemojiCountryFlags.woff2") format("woff2");
  font-display: swap;
}

/* Page background */
body,
html {
  background-color: #ffffff;
}

/* Utility classes used by the exported HTML (fun-*) to replicate layout) */
.fun-flex {
  display: flex;
}
.fun-flex-col {
  flex-direction: column;
}
.fun-flex-1 {
  flex: 1;
}
.fun-min-h-screen {
  min-height: 100vh;
}
.fun-relative {
  position: relative;
}
.fun-absolute {
  position: absolute;
}
.fun-top-0 {
  top: 0;
}
.fun-left-0 {
  left: 0;
}
.fun-w-full {
  width: 100%;
}
.fun-h-full {
  height: 100%;
}
.fun-max-w-md {
  max-width: 640px;
}
.fun-max-w-xl {
  max-width: 768px;
}
.fun-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.fun-pl-6 {
  padding-left: 1.5rem;
}
.fun-pr-6 {
  padding-right: 1.5rem;
}
.fun-pt-4 {
  padding-top: 1rem;
}
.fun-pb-8 {
  padding-bottom: 2rem;
}
.fun-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.fun-p-0 {
  padding: 0;
}
.fun-rounded-xl {
  border-radius: 14px;
}
.fun-overflow-hidden {
  overflow: hidden;
}
.fun-object-center {
  object-position: center;
}
.fun-transition-all {
  transition: all 0.25s ease;
}
.fun-grid {
  display: grid;
}
.fun-grid-cols-1 {
  grid-template-columns: 1fr;
}
.fun-gap-6 {
  gap: 1.5rem;
}

/* Header/Hero gradient and card styles to mimic exported page */
.fun-border-box {
  box-sizing: border-box;
}
.fun-z-10 {
  z-index: 10;
}
.fun-bg-cover {
  background-size: cover;
  background-position: center;
}
.fun-box-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fun-border-box.fun-relative.fun-w-full.fun-bg-cover.fun-pl-6.fun-pr-6 {
  background: rgb(33, 128, 183);
}

.lead-inner {
  padding: 24px;
  text-align: center;
}
.lead-inner h1 {
  margin: 0 0 12px 0;
  font-size: 28px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
}
.lead-inner p {
  margin: 0 0 18px 0;
  color: #ffffff;
  font-size: 16px;
}
.fun-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #ffffff;
  color: #1658b8;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* Image container sizing to match exported aspect behavior */
.fun-overflow-hidden
  .fun-relative
  .fun-absolute.fun-left-0.fun-top-0.fun-w-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fun-overflow-hidden img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure base font-family matches the export */
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
