.topbar__item, .topbar__contact {
  color: rgb(0, 0, 0);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.topbar__item a, .topbar__contact a {
  color: rgb(0, 0, 238);
}
.topbar__inner {
  background-color: rgb(255, 255, 255);
  padding: 5px 0;
}

.header__link {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgb(0, 0, 238);
  letter-spacing: normal;
  text-transform: none;
  padding: 0 10px;
}
.header__inner {
  padding: 10px 0;
}

.hero {
  background-image: url('YOUR_HERO_BACKGROUND_IMAGE_URL.jpg'); /* Keep background image from rebuilt */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__heading {
   /* From computed bodyText */
  font-size: 65px; /* From computed bodyText */
  font-weight: 400; /* From computed bodyText */
  color: rgb(223, 212, 197); /* From computed bodyText */
  line-height: normal;
  letter-spacing: normal;
  margin-bottom: 20px;
}
.hero__subtext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero__button {
  background-color: rgb(149, 104, 24); /* From computed button */
  color: rgb(0, 0, 0); /* From computed button */
  font-family: Arial, Helvetica, sans-serif; /* From computed button */
  font-size: 10px; /* From computed button */
  font-weight: 400; /* From computed button */
  border-radius: 100px; /* From computed button */
  padding: 12px 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  min-width: 150px;
}
.hero__phone {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: rgb(255, 255, 255);
  margin-top: 15px;
}

.about__inner {
  padding: 80px 20px;
  background-color: rgb(255, 255, 255);
}
.about__heading {
   /* From computed heroHeading */
  font-size: 50px; /* From computed heroHeading */
  font-weight: 400; /* From computed heroHeading */
  color: rgb(0, 0, 0); /* Black as in original modal STAIRLIFTS */
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 30px;
}
.about__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: rgb(50, 50, 50);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services, .gallery {
  padding: 60px 20px;
  background-color: rgb(255, 255, 255);
}
.services__heading, .gallery__heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgb(50, 50, 50);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.cta-strip {
  background-color: rgb(110, 100, 90);
  padding: 50px 20px;
  text-align: center;
}
.cta-strip__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  line-height: 1.5;
}
.cta-strip__button {
  background-color: rgb(149, 104, 24); /* From computed button */
  color: rgb(0, 0, 0); /* From computed button */
  font-family: Arial, Helvetica, sans-serif; /* From computed button */
  font-size: 10px; /* From computed button */
  font-weight: 400; /* From computed button */
  border-radius: 100px; /* From computed button */
  padding: 12px 25px;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px 20px;
  min-width: 150px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.services__card {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.services__title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgb(50, 50, 50);
  margin-bottom: 15px;
}
.services__card p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgb(80, 80, 80);
  line-height: 1.6;
  margin-bottom: 15px;
}
.services__card .services__overlay {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgb(0, 0, 238);
  text-decoration: none;
  display: block;
  margin-top: auto;
}