* { box-sizing: border-box; margin: 0; padding: 0; } 

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.top {
  background: #000;
  color: #b6ff00;
}

.logo {
  font-size: 26px;
  font-weight: 900;
}

.logo span {
  color: #b6ff00;
}

.cta {
  color: #b6ff00;
  text-decoration: none;
  font-weight: bold;
}

.hero{ 
  position: relative;
  text-align: center;
  padding: 80px 20px;
  color: #fff;

  min-height: 520px;
  display: flex;
  align-items: center;

  background-color: #111;
  background-image: url("./demo-cleanup-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay for readability */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero .container{
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 span{
  color: #3cff00;
}

@media (max-width: 720px){
  .hero{ min-height: 420px; padding: 60px 16px; }
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #3cff00;
  color: #000;
}

.outline {
  border: 2px solid #000;
  color: #000;
}
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.services, .steps {
  padding: 0;
}

.services ul {
  list-style: none;
}

.services li {
  margin: 10px 0;
}

.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Privacy policy styling */ 
body {
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: #3cff00;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2 {
  margin-top: 20px;
}

/* Layout helpers */ 
.container{
  max-width:1100px;
  margin:0 auto;
  padding:20px;
}

/* Header */ 
.site-header{ 
  background:#000;
}

/* Header layout */ 
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height: 78px; /* smaller header */
  padding: 10px 0;
}

/* Make the header logo RESPONSIVE */
.header-logo{
  height: 52px; /* controls header height */
  width: auto;
  max-width: 55vw; /* prevents it from going off the page */
  display:block;
}

/* Prevent CTA from forcing overflow */
.header-cta{
  white-space: nowrap; /* keeps it on one line on desktop */
  flex: 0 0 auto;
}

/* Allow logo area to shrink if needed */
.header-row a:first-child{
  flex: 1 1 auto;
  min-width: 0;
}

/* Hero */
.hero-logo{ width:min(520px, 92%); height:auto; display:block; margin:0 auto 16px; }
.hero h1 span{ color:#3cff00; }
.hero-buttons{ margin-top:16px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* Mobile */
 @media (max-width: 900px){ 
  .header-row{
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: auto;
    padding: 12px 0;
  }

  .header-logo{
    height: 48px;
    max-width: 92vw;
  }

  .header-cta{
    width: 100%;
    text-align: center;
    white-space: normal; /* allow wrap on mobile */
  }
}

/* ===== HEADER HARD RESET (PUT THIS AT BOTTOM) ===== */ 
.site-header{
  background:#000 !important;
  height:auto !important;
  min-height:0 !important;
  padding:0 !important;
  margin:0 !important;
}

.site-header .container{
  max-width:1100px !important;
  margin:0 auto !important;
  padding:10px 16px !important; /* tight header */
}

.site-header .header-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  height:auto !important;
  min-height:72px !important; /* keeps it compact */
}

.site-header img.header-logo{
  height:140px !important; /* controls header HEIGHT */
  width:auto !important;
  max-width:60vw !important; /* prevents overflow */
  max-height:160px !important;
}

/* Prevent any global img rule from blowing things up */
.site-header img{
  max-height:160px !important;
  max-width:100% !important;
  width:auto !important;
  height:auto !important;
  display:block !important;
}

.site-header .header-cta{
  white-space:nowrap !important;
  flex:0 0 auto !important;
}

/* Mobile: stack so nothing can go off-screen */
@media (max-width: 900px){
  .two-col{
   grid-template-columns: 1fr
  .site-header .header-row{
    flex-direction:column !important;
    min-height:0 !important;
  }
  .site-header img.header-logo{
    height:64px !important;
    max-width:92vw !important;
    max-height:90px !important;
  }
  .site-header .header-cta{
    width:100% !important;
    text-align:center !important;
    white-space:normal !important;
  }
}

/* FORCE Services + How It Works into 2 columns on desktop */ 
.two-col{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: center !important;
}

/* Make sure grid children can shrink properly */
.two-col > *{
  min-width: 0;

.two-col h2{
  margin-top: 0;
}

/* Wrapper controls spacing now */
.two-col.container{
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Remove old section padding so they don't look "double padded" */
.two-col .services,
.two-col .steps{
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}

/* Stack on mobile */
@media (max-width: 900px){
  .two-col{
    grid-template-columns: 1fr !important;
  }
}

.two-col{ 
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
}

.two-col > *{ min-width: 0; }

.two-col .services,
.two-col .steps{
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.two-col h2{
  margin-top: 0 !important;
  padding left: 0; !important;
}

@media (max-width: 900px){
  .two-col .steps{
    padding-left: 0;
  .two-col{
    grid-template-columns: 1fr !important;
  }
}

/* Fix How It Works alignment */ 
.two-col .steps ol,
.two-col .steps ul{
  padding-left:24 !important;
  margin-left: 0 !important;
  list-style-position: inside; /* keeps numbers aligned with text */
}

.two-col .steps{
  padding-left: 24px; /* adjust: 16px–32px sweet spot */
}

/* Shift How It Works column slightly toward center */ 
.two-col .steps{
  justify-self: center; /* moves the whole column inward */
  max-width: 90%; /* keeps it from stretching too wide */
}
