/* === Typography === */
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: #111;
  font-weight: 700;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.25rem;  /* ~36px */
  text-transform: uppercase;
}

h2 {
  font-size: 1.75rem;  /* ~28px */
  text-transform: titlecase;
}

h3 {
  font-size: 1.5rem;  /* ~24px */
}

p {
  font-size: 1rem;  /* 16px */
  line-height: 1.6;
}

ul {
  font-size: 1rem;  /* 16px */
  line-height: 1.6;
}



li {
  font-size: 1rem;  /* 16px */
  line-height: 1.6;
}


.cta-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.footer-note,
.footer-grid p,
.nav-links a,
ul li,
iframe-wrapper p {
  font-size: 0.875rem;  /* ~14px for clean body and footer */
}

.footer-contact {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
text-transform: uppercase;
  letter-spacing: 0px;
  font-size: 0.625rem;
line-height: 1.25;
}
	

header, section {
  padding: 32px 20px;
  max-width: 1000px;
  margin: auto;
}

header {
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #eee;
}


.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 28px;
  margin-bottom: 24px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.cta-btn-footer {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 28px;
margin-bottom: 24px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.split-image {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.split-image img {
  width: 48%;
  border-radius: 8px;
}

.full-image {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.full-image img {
  width: 100%;
  border-radius: 8px;
}



ul {
  list-style: disc inside;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.testimonial {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-item {
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-top: 1px solid #eee;
font-size: 0.875rem;
}

.footer-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer-grid img {
  width: 120px;
	margin-top: 12px;
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  align-items: center;
}


.footer-bottom p {
  font-size: 0.750rem;
}
.header-container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero {
  max-width: 1000px;
  margin: auto;
  padding: 24px 20px;
  text-align: center;
}

.logo img {
  height: 24px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

.nav-btn {
  display: inline-block;
  padding: 8px 12px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.quote {
  margin-top: 20px;
}

.iframe-wrapper {
  max-width: 1000px;
  min-width: 350px;
  margin: 60px auto;
  padding: 0 20px;
}

iframe {
  width: 90%;
  height: 1000px;
  border: none;
}

.footer-note {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.875rem;
  color: #666;
}

/* ============================= */
/* 📱 Mobile Styles (Responsive) */
/* ============================= */
@media (max-width: 768px) {
  header, section, .hero {
    padding: 4px 16px;
  }

  .header-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  .split-image {
    flex-direction: column;
    gap: 20px;
  }

  .split-image img {
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
	gap: 0px;
  }

  .footer-grid div {
    margin-bottom: 16px;
  }

.footer-bottom p {
  font-size: 0.625rem;
}

  .hero {
    padding: 40px 16px;
  }

  .cta-btn {
    width: 80%;
    text-align: center;
  }

 .cta-btn-footer {
	display: block;
    width: 80%;
    text-align: center;
  }

  .quote {
    font-size: 0.95rem;
    margin-top: 16px;
  }
}

iframe {
        height: 1200px; /* More vertical space for mobile */
      }