@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Lato:wght@400;700&family=Inter:wght@300;500&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', Arial, sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
}

.bg-fixed {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background: #ffffff;
  overflow: auto;
  display: flex;
  justify-content: center;
}

.popup-container {
  width: 720px;
  max-width: 100%;
  background: #ffffff;
  padding: 15px;
  min-height: 100vh;
}

.section {
  padding: 15px 15px;
  text-align: center;
  background: transparent;
}

.logo-banner {
  padding: 5px 0;
  text-align: center;
}

.logo-banner img {
  max-width: 200px;
  height: auto;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3em;
}

h1 { font-size: 22px; }
h2 { font-size: 18px; }
h3 { font-size: 16px; }

p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  margin: 8px 0;
}

.highlight-yellow {
  background-color: #faf089;
  padding: 2px 6px;
}

.highlight-pink {
  background-color: #fbb6ce;
  padding: 2px 8px;
}

.highlight-magenta {
  background-color: #ff00ff;
  color: #fff;
  padding: 2px 8px;
  font-weight: 700;
}

.bg-pink {
  background-color: #fbb6ce;
}

.btn-next {
  display: inline-block;
  background-color: #37ca37;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border: 2px solid #9ae6b4;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-next:hover {
  background-color: #2db82d;
}

.btn-submit {
  display: inline-block;
  background-color: #155eef;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 35px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: #1250d4;
}

.cta-section {
  padding: 15px 15px 40px 15px;
  text-align: center;
  background: transparent;
}

a { color: #188bf6; }

.step-content {
  text-align: left;
  padding: 5px 0;
}

.step-content p {
  font-size: 14px;
  line-height: 1.8em;
  margin: 8px 0;
}

.step-img {
  display: block;
  margin: 10px 0;
  max-width: 240px;
}

.step-img-large {
  display: block;
  margin: 10px 0;
  max-width: 480px;
  width: 100%;
}

.qr-img {
  max-width: 240px;
  margin: 15px auto;
  display: block;
}

.centered { text-align: center; }
.left { text-align: left; }

.bullet-list {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8em;
  padding: 10px 15px 10px 35px;
  text-align: left;
}

.bullet-list li {
  margin: 4px 0;
}

/* Form styles */
.form-container {
  max-width: 100%;
  margin: 10px 0;
  padding: 15px;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2c3345;
  margin-bottom: 5px;
}

.form-group label .required {
  color: #e53e3e;
  margin-left: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #2c3345;
  background: #ffffff;
  border: 1px solid #acacac;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #155eef;
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.1);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-group .helper-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  color: #8c8c8c;
  margin-top: 3px;
}

.success-message {
  max-width: 500px;
  margin: 60px auto;
  text-align: center;
  padding: 30px;
  background: #f0fff4;
  border: 2px solid #37ca37;
  border-radius: 12px;
}

.success-message h2 {
  color: #37ca37;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .popup-container {
    width: 380px;
    padding: 10px;
  }
  h1 { font-size: 18px; }
  h2 { font-size: 16px; }
  p { font-size: 14px; }
  .step-img-large { max-width: 100%; }
  .logo-banner img { max-width: 150px; }
}
