* {
  margin: 0;
  padding: 0;
  list-style: none;
}

html,
body {
  font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  color: var(--heading-color);
}

a {
  color: var(--link-color);
}

#smb-page {
  max-width: 960px;
  padding: 50px 0;
  margin: 0 auto;
}

header{
  text-align: center;
  margin-bottom: 25px;
}

section{
  max-width: 600px;
  margin: 0 auto;
}

.smb-content{
  font-size: 17px;
  line-height: 1.6;
}

.contact-form {
  margin-top: 20px;
}

.lead-form {
  margin-top: 20px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form-grid-narrow {
  grid-template-columns: 140px minmax(0, 1fr);
}

.contact-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
}

.contact-form-input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid var(--border-muted-color);
  border-radius: 8px;
  box-sizing: border-box;
  font: inherit;
  color: var(--heading-color);
  background: var(--surface-color);
}

.contact-form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-input:focus {
  outline: none;
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(31, 32, 33, 0.12);
}

.contact-form-button {
  display: inline-block;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--heading-color);
  color: var(--surface-color);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-form-button:hover {
  background: var(--heading-secondary-color);
}

.site-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 9999;
}

.site-modal.show {
  display: flex;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.site-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--surface-color);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.site-modal-status {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 56px;
  color: var(--surface-color);
}

.site-modal-status.success {
  background: var(--success-color);
}

.site-modal-status.error {
  background: var(--error-color);
}

.site-modal-title {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 24px;
}

.site-modal-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted-color);
}

.site-modal-actions {
  margin-top: 24px;
}

.site-modal-button {
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--heading-color);
  color: var(--surface-color);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width:768px){
  .lead-form-grid,
  .lead-form-grid-narrow {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

h1 {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: center;
}
h2{
  text-align: center;
  margin-top: 80px;
  font-weight:400;
}
img{
  max-width: 180px;
}

.smb-small {
  margin: 20px auto;
  border-width: 3px 0 0;
  width: 50px;
  clear: both;
  border-top: solid var(--heading-color);
  box-sizing: border-box;
}

@media (max-width:768px){
  #smb-page{
    padding: 50px 15px;
    box-sizing: border-box;
  }

  header{
    margin-bottom: 20px;
    text-align: center;
  }
}