/* ============================================
   SPRINGBOK FIXED PRICE — META ADS LANDING PAGE
   Materialize CSS + Springbok Brand
   ============================================ */

/* ---------- CSS Variables (Springbok Brand) ---------- */
:root {
  --yellow: #fdee18;
  --yellow-pale: #fffde5;
  --yellow-hover: #e8da00;
  --teal: #32beb8;
  --teal-dark: #2aa19c;
  --dark-teal: #033137;
  --green: #418181;
  --bg: #f7f7f9;
  --text: #7e7e7e;
  --title: #595959;
  --black: #000000;
  --white: #ffffff;
  --grey-light: #f4f4f4;
  --border: #d6d6d6;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 35px;
}

/* ---------- Global Resets ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
}

/* Override Materialize defaults */
.row {
  margin-bottom: 0;
}
.row .col {
  padding: 0 12px;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--white);
  padding: 48px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative scattered icons (like Springbok's page) */
.hero-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-icon {
  position: absolute;
  color: var(--yellow);
  opacity: 0.18;
}
.hero-icon i {
  font-size: 64px;
}
.icon-award { top: 15%; left: 8%; }
.icon-home { top: 12%; right: 10%; }
.icon-search { top: 42%; left: 14%; }
.icon-money { bottom: 30%; left: 6%; }
.icon-shield { bottom: 22%; right: 6%; }
.icon-pin { top: 38%; right: 12%; }

.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Trust badge pill */
.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff002;
  color: #08515a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}
.trust-badge-pill i {
  font-size: 16px;
}

/* Headline */
.hero-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-teal);
  max-width: 780px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 18px;
  color: var(--green);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto 28px;
}

/* Emotional Bullets */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 0;/*36px;*/
}
.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-teal);
}
.hero-bullet i {
  color: var(--teal);
  font-size: 18px;
}

/* CTA Box */
.hero-cta-box {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 36px 40px 28px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.cta-box-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

/* Form input + button row */
.cta-input-group {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  border: 5px solid var(--yellow);
  overflow: hidden;
}

.cta-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  height: 64px !important;
  padding: 0 20px !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  margin: 0 !important;
  background: transparent !important;
}
.cta-input::placeholder {
  color: #b0b0b0;
}
/* Remove Materialize underline on input */
.cta-input:focus {
  border-bottom: none !important;
  box-shadow: none !important;
}
input.cta-input[type="text"]:not(.browser-default):focus:not([readonly]) {
  border-bottom: none !important;
  box-shadow: none !important;
}

.cta-btn-yellow {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: none;
  border-radius: 0 8px 8px 0 !important;
  height: 64px;
  line-height: 64px;
  padding: 0 28px;
  white-space: nowrap;
  box-shadow: none;
  letter-spacing: 0;
}
.cta-btn-yellow:hover,
.cta-btn-yellow:focus {
  background: var(--yellow-hover) !important;
}

.cta-microcopy {
  color: var(--white);
  font-size: 13px;
  margin-top: 14px;
  opacity: 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cta-microcopy i {
  font-size: 14px;
}


/* ============================================
   SECTION 2: WHY PEOPLE COME TO US
   ============================================ */
.section-why {
  background: var(--bg);
  padding: 64px 0;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pain-points {
  max-width: 800px;
  margin: 0 auto 32px;
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--title);
  padding: 10px 0;
  line-height: 1.5;
}
.pain-list li i {
  color: #e53935;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bridge-box {
  background: var(--teal);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  max-width: 700px;
  margin: 0 auto;
}
.bridge-text {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}


/* ============================================
   SECTION 3: THE FIXED PRICE SOLUTION
   ============================================ */
.section-solution {
  background: var(--white);
  padding: 64px 0;
}

.steps-row {
  margin: 40px 0 32px;
}

.step-card {
  background: var(--white);
  border: 1px solid #d0d0d0;
  border-radius: var(--radius-md);
  padding: 36px 24px 28px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 20px 0 8px;
}

.step-desc {
  font-size: 15px;
  color: var(--text);
  margin: 0;
}

.key-line {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-teal);
  max-width: 600px;
  margin: 0 auto;
}


/* ============================================
   SECTION 4: DIFFERENT FROM ESTATE AGENTS
   ============================================ */
.section-different {
  background: var(--bg);
  padding: 64px 0;
}

.comparison-table-wrap {
  max-width: 800px;
  margin: 32px auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ccc;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  font-size: 15px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}
.comparison-table thead th {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 20px;
}
.comparison-table thead th.col-agent {
  background: var(--grey-light);
  color: var(--title);
}
.comparison-table thead th.col-springbok {
  background: var(--yellow);
  color: var(--black);
}
.comparison-table thead th.col-fastCash {
  background: #147F84;
  color: var(--black);
}
.comparison-table td.col-agent {
  background: var(--grey-light);
  color: var(--title);
}
.comparison-table td.col-springbok {
  background: var(--yellow-pale);
  color: var(--dark-teal);
  font-weight: 600;
}
.comparison-table td.col-fastCash {
  background: #6AE0E0;
  color: var(--dark-teal);
  font-weight: 600;
}
.comparison-table .row-label {
  text-align: left;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

.section-close {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-teal);
  font-style: italic;
}


/* ============================================
   SECTION 5: SOCIAL PROOF
   ============================================ */
.section-proof {
  background: var(--white);
  padding: 64px 0;
}

.stats-row {
  margin: 36px 0;
}

.stat-card {
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 16px;
}

.stat-icon {
  font-size: 36px;
  color: var(--dark-teal);
  display: block;
  margin-bottom: 8px;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--black);
}

.stat-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  text-transform: lowercase;
}

/* Video Review Cards */
.video-reviews-row {
  margin: 20px 0 32px;
}

.video-review-card {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.video-review-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.play-btn i {
  font-size: 56px;
  color: #ff0000;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  line-height: 1;
  display: block;
}

.video-review-info {
  padding: 14px 16px 16px;
}

.video-seller-name {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 2px;
  line-height: 1.3;
}

.video-seller-location {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.video-seller-desc {
  font-size: 14px;
  color: var(--title);
  line-height: 1.45;
  margin: 0;
}

/* Featured Video Embed */
.video-embed-section {
  max-width: 720px;
  margin: 0 auto 28px;
}

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trust-line {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}


/* ============================================
   SECTION 6: PRICE OBJECTION
   ============================================ */
.section-objection {
  background: var(--bg);
  padding: 64px 0;
}

.financial-table-wrap {
  max-width: 860px;
}

.financial-table .net-row td {
  font-size: 18px;
  border-top: 3px solid var(--black);
  padding-top: 16px;
  padding-bottom: 16px;
}
.financial-table .net-row td.col-springbok {
  color: var(--teal);
  font-size: 20px;
}

.reality-box {
  background: var(--white);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 28px 32px;
  max-width: 700px;
  margin: 36px auto;
}

.reality-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.reality-title i {
  font-size: 24px;
}

.reality-text {
  font-size: 15px;
  color: var(--title);
  line-height: 1.75;
  margin: 0;
}

.end-result-box {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--teal);
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.end-result-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-teal);
  text-align: center;
  margin-bottom: 20px;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.result-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-teal);
  padding: 8px 0;
}
.result-list li i {
  color: var(--teal);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta {
  background: var(--teal);
  padding: 64px 0;
  text-align: center;
}

.final-cta-icon i {
  font-size: 64px;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 12px;
}

.final-cta-headline {
  color: var(--white) !important;
  font-size: 34px;
  margin-bottom: 10px;
}

.final-cta-sub {
  color: var(--white);
  font-size: 18px;
  opacity: 0.92;
  margin-bottom: 32px;
}

.final-cta-form {
  max-width: 620px;
  margin: 0 auto 20px;
}

.final-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 16px;
}
.final-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--white);
  opacity: 0.9;
}
.final-reassurance span i {
  font-size: 16px;
}


/* ============================================
   FOOTER
   ============================================ */
.springbok-footer {
  background: var(--white) !important;
  padding: 36px 0 24px;
  border-top: 3px solid var(--yellow);
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer-logo-svg {
  width: 180px;
  height: auto;
}

.footer-links-col {
  text-align: center;
}

.footer-link-item {
  font-size: 15px;
  color: var(--title);
}
.footer-link-item strong {
  color: var(--black);
  font-size: 18px;
}

.footer-legal-col {
  text-align: right;
}
.footer-legal {
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 4px;
}


/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: ensure content is visible if JS hasn't run yet */
.no-js .reveal {
  opacity: 1;
  transform: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero-headline {
    font-size: 32px;
  }
  .section-title {
    font-size: 26px;
  }
  .final-cta-headline {
    font-size: 28px;
  }
  .hero-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 0;
  }
  .hero-headline {
    font-size: 26px;
    padding: 0 8px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-bullets {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* Stack CTA input and button */
  .cta-input-group {
    flex-direction: column;
    border-radius: 12px;
  }
  .cta-input {
    height: 56px !important;
    border-bottom: 2px solid #eee !important;
    border-radius: 12px 12px 0 0 !important;
    text-align: center;
  }
  .cta-btn-yellow {
    border-radius: 0 0 8px 8px !important;
    height: 56px;
    line-height: 56px;
    width: 100%;
    font-size: 15px;
  }

  .hero-cta-box {
    padding: 28px 20px 22px;
    margin: 0 8px 36px;
  }

  .section-why,
  .section-solution,
  .section-different,
  .section-proof,
  .section-objection {
    padding: 48px 0;
  }

  .section-title {
    font-size: 24px;
    padding: 0 8px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .stat-card {
    margin-bottom: 12px;
  }
  .stat-number {
    font-size: 26px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .final-cta-headline {
    font-size: 24px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal-col {
    text-align: center;
  }

  .step-card {
    min-height: auto;
  }

  .end-result-box {
    padding: 24px 16px;
  }

  .reality-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 23px;
  }
  .section-title {
    font-size: 21px;
  }
  .final-cta-headline {
    font-size: 22px;
  }
  .cta-box-heading {
    font-size: 17px;
  }
}

           /* --- Global & Base Reset --- */
* {
    box-sizing: border-box;
}
.hero{
    padding: 0;
}
ul, ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    background-color: transparent;
    transition: color 0.4s, background 0.4s, opacity 0.4s;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* --- Layout Components --- */
.header {
    position: relative;
    padding: 10px 0 15px;
    display: block;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row:not(.pain-points) {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 0;
}

.col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Helper Classes */
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }

/* --- Header Specific Content --- */
.header .logo {
    margin: 0 26px 0 0;
}

.header .logo img {
    display: block;
    width: 100%;
}

.header .tell {
    text-align: center;
}

.header .tell .text {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #54595f;
    margin: 0 0 3px;
}

.header .tell .tell-no {
    color: #54595f;
    font-size: 28px;
    line-height: 34px;
    font-weight: 800;
}

.header .tell .tell-no a {
    display: none; /* Mobile button hidden by default */
}

.logo-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 5px 0 -5px;
}

.logo-list li {
    padding: 0 5px;
}

/* --- Responsive Media Queries --- */

/* Container Widths */
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1230px) { .container { max-width: 1196px; } }

/* Desktop Layout Adjustments */
@media (min-width: 768px) {
    .justify-content-md-between { justify-content: space-between !important; }
}

@media (min-width: 992px) {
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Specific Content Responsiveness */
@media (max-width: 1230px) {
    .header .tell .text { font-size: 12px; }
}

@media (max-width: 1023px) {
    .header .logo { width: 250px; }
    .logo-list { display: none; } /* Hide trust badges on smaller tablets/mobile */
}

@media (max-width: 767px) {
    .header { padding: 10px 0; }
    .header .logo { margin: 0 50px 10px; }
    .header .tell { display: block; width: 100%; }
    
    /* Mobile Phone Button Style */
    .header .tell .text, 
    .header .tell .tell-no span { display: none; }
    .header .tell .tell-no a {
        display: block;
        padding: 11px;
        background-color: #0077aa;
        color: #ffffff;
        font-family: Helvetica, sans-serif;
        font-size: 20px;
        font-weight: 700;
        width: 100%;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
    }
}

/* Print Styles */
@media print {
    .header * { text-shadow: none !important; box-shadow: none !important; }
    .container { min-width: 992px !important; }
}

/* Base Tagline Wrapper */
.tagline {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgb(84, 89, 95);
    color: rgb(255, 255, 255);
    padding: 8px 8px 10px;
    font-family: "Fira Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
}

/* Central Container */
.tagline .container {
    max-width: 1196px; /* Typical container max-width */
    margin: 0 auto;
    padding: 0 15px;
}

/* Inner Layout Wrapper */
.tagline-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Individual Tagline Item */
.tagline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 23px; /* Based on computed offset */
}

/* Icons within items */
.tagline-item .icon {
    display: block;
    margin-right: 7px;
    height: 31px;
}

.tagline-item .icon img {
    height: 100%;
    width: auto;
    vertical-align: middle;
}

/* Text within items */
.tagline-item .text {
    display: block;
    line-height: 18px;
    white-space: nowrap;
}

/* Small utility for rating numbers */
.tagline-item .text .mr-1 {
    margin-right: 0.25rem;
}

@media (max-width: 576px) { .tagline-item-1, .tagline-item-2{display: none;} 

.trust-badge-pill {
    gap: 0px;
    font-size: 10px;
    padding: 9px 20px;
    letter-spacing: 0.1px;
}
.header .tell .tell-no {
    line-height: 13px;
}
.header .tell .tell-no a{
    font-size: 16px;
}
    .hero-sub {
        font-size: 13px;
        margin: 0 auto 10px;
    }
    .hero-section {
        padding: 15px 0 0;
    }
    .tagline {
    padding: 3px 8px 4px 20px;
    font-size: 14px;
}
    .form-area-inner h2 {
        font-size: 17px;
    }
    .hero-bullets{
        gap:2px;
        
    }
    .hero-bullet{
        font-size: 10px;
    }
    .hero-headline{
        font-size: 16px;
        padding: 0px;
        margin: 0 auto 8px;
    }
    .logo img{
        width: 200px!important;
        margin: 0 auto;
    }
    .hero-bullets.center-align {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Add spacing between bullets */
  }
  .form-area-inner p{
      font-size: 9px;
  }
}
 button:focus {
                outline: none;
                background-color: var(--yollow);
            }
@media (max-width: 600px) {
    .hero-input-item button {
        font-size: 15px;
    }
}
            
.iframe-h2{
    margin-top: 25px;
}  

@media (max-width: 767px) {
    .header .tell .tell-no a {
        background-color:var(--light-green);
        box-shadow:none;
    }
}