body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #ffffff;
  color: #0A2472;
  text-align: center;
  margin: 0;
  padding: 2rem;
  line-height: 1.4;
}

header {
  padding: 2rem 0;
  background-color: #0A2472;
  color: #ffffff;
}

h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 3rem;
}

p {
  font-size: 2.1rem;
  margin: 1rem auto;
}


footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #0A2472;
}
.site-header {
  position: sticky;
  top: 0;
  background-color: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 120px;
  width: auto;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.navbar li a {
  text-decoration: none;
  font-weight: 500;
  color: #0A2472;
  transition: color 0.3s ease;
}

.navbar li a:hover {
  color: #209d99;
}
main img {
  display: block;
  margin: 1rem auto -0.5rem auto; /* Top, Right, Bottom, Left */
}
main p:last-of-type {
  margin-top: -0.5rem;
}
.separator {
  border: none;
  border-top: 6px solid #F0F4FF;
  margin: 3rem auto;
  width: 80%;
}

.centered-left-list {
/* max-width: 600px; or whatever width */
  margin: 0 auto; /* center block horizontally */
  text-align: left; /* left-align text inside */
  list-style-position: inside; /* bullets inside the content box */
  margin-top: 3rem; /* adjust if needed */
  margin-bottom: 7rem; /* adjust if needed */
  padding-left: 0; /* adjust if needed */
}

/* Typography Classes */

.regular {
  font-weight: 300;
  font-size: 1.7rem;
  /* margin: rem auto; */
}

.medium {
  font-weight: 400;
}

.bold {
  margin: 1rem 2.5rem 1rem 2.5rem;  
  text-align: justify; 
  font-size: 1.1rem;
  font-weight: 300;
}

/* .extralight-text {
  font-weight: 200;
  font-size: 2.1rem;
  margin: 1rem auto;
} */

.extralight-text {
  font-weight: 200 !important;
  font-size: 1.6rem 
  margin: 1rem auto;
  text-align: left;
}

.thin-text {
  font-weight: 150;
}
  
.two-column-section {
  display: flex;
  justify-content: left;
  gap: 2rem;
  padding: 1rem 1rem;
  /* background styles removed */
}

.column {
  flex: 1;
  max-width: 550px;
}


.cleaning-list {
  font-weight: 200;
  font-size: 1.6rem;
  /* list-style-position: inside; */
  text-align: left;
}
.below-columns-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; /* spacing above the image */
}
  
.below-col-img {
  /* display: block; */
  max-width: 120%;
  height: auto;
  margin: 0 auto 0 auto; /* spacing above the image */
}
  .founder-note .h2 {
   font-size: 1rem;
   margin: 2rem auto 0 2.5rem;
   font-weight: 500;
   font-size: 1.8rem;
  }

/* --- RESPONSIVE CSS TO ADD TO YOUR styles.css FILE --- */

/* Mobile styles (phones & small tablets) */
@media screen and (max-width: 768px) {
  body {
    padding: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .navbar ul {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }


  .logo {
    height: 80px;
  }

  .two-column-section {
    flex-direction: column;
    gap: 2rem;
  }

  .column {
    max-width: 100%;
  }

  .below-columns-img,
  .below-col-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
  }

  footer p {
    font-size: 1rem;
  } 

  .extralight-text {
    font-size: 1.1rem !important;
    line-height: 1.5rem;
    margin: 1rem 0;
	text-align: left !important;
	
  }
  .anyone .extralight-text {
   font-size: 1.2rem !important;
  }

  .thisguy .extralight-text {
    font-size: 1.2rem !important;
  }
  
  .maintext .extralight-text {
   font-size: 1.2rem !important;
   	text-align: center !important;
  }
 
  .bold {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: .8rem;
    line-height: 1.6rem;
    text-align: left;
  }
   
  .cleaning-list {
  font-weight: 200;
  font-size: 1.1rem;
  /* list-style-position: inside; */
  text-align: left;
}
  .founder-note h2 {
   font-size: 1.2rem !important;
   font-weight: 350 !important;
   /* background-color: green; */
  }

  .about-intro p,
  .differentiators p,
  .differentiators h2 {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 1.3rem;
    line-height: 1.6rem;
    text-align: left;
  } 

}


