* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #111;
  background: #fff;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* HERO IMAGE ONLY */
.hero-image-only {
  background: url("/images/hero.jpg") center center / cover no-repeat;
  min-height: 60vh;
}

/* HERO TEXT BAND */
.hero-band {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

.hero-band h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero-band .tagline {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 60, 0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 2.6rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.subtext {
  font-size: 1.05rem;
  color: #e5e5e5;
  margin-bottom: 30px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.primary {
  background: #fff;
  color: #111;
}

.secondary {
  background: #e5e5e5;
  color: #111;
}

.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* TRUST */
.trust {
  background: #f5f5f5;
  padding: 20px 0;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 60px 0;
  text-align: center;
}

.section.alt {
  background: #fafafa;
}

h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* SERVICES */
.services {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.services li {
  padding: 8px 0;
}

/* STEPS */
.steps {
  list-style-position: inside;
  margin: 0 auto;
  max-width: 600px;
  padding: 0;
}

.steps li {
  margin-bottom: 10px;
}

/* FORM */
.form-note {
  margin-bottom: 20px;
}

.deftform-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
}
