* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

a {
  text-decoration: none;
  color: inherit;

  &:hover {
    color: #ff0000;
  }
}

p {
  font-size: 22px;
  font-family: 'Montserrat', sans-serif;
}

.overlay {
  position: relative;
  background-image: url('images/header-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 100px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

header .overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

header .overlay > * {
  position: relative;
  z-index: 2;
}

header .overlay img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.contact {
  margin-top: 10px;
}

.contact p {
  margin: 5px 0;
  font-family: 'Montserrat', sans-serif;
}

.contact a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.intro {
  padding: 40px;
  background-color: #fff;
}

.intro h1,
.h1-style {
  color: #000;
  font-size: 48px;
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  line-height: 50px;
}

.intro p {
  margin: 40px auto 20px;
  line-height: 1.5;
}

.services {
  background-image: url('images/red-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.services h2 {
  font-size: 42px;
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  margin: 0;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.service-item {
  background-color: #fff;
  color: #000;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  border: 3px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 400px;
  min-height: 150px;

  @media screen and (max-width: 600px) {
    flex: 1;
  }

  img {
    max-width: 60px;
  }

  #glass {
    max-width: 75px;
  }

  .service-image {
    min-height: 75px;
    display: flex;
    align-items: center;
  }
}

footer {
  color: #000;
  padding: 30px;

  p {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 0;
  }
}

.overlay span {
  font-family: 'Teko', sans-serif;
  font-size: 33px;
  line-height: 29px;
  display: block;
}

.button {
  width: 175px;
  background-color: #ff0000;
  padding: 20px;
  display: block;
  margin: 0px auto;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: 2px solid transparent;

  &:hover {
    background-color: #000;
    color: #fff;
    border: 2px solid #ff0000;
  }
}

.cta {
  padding: 40px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Existing CSS remains unchanged, adding media queries below */

@media (max-width: 768px) {
  .overlay {
    padding: 20px;
  }

  .logo {
    max-width: 90%;
    margin: 0 auto;
  }

  .intro {
    padding: 0px;

    p {
      margin: 20px auto 0;
    }
  }

  .services {
    padding: 20px;
  }

  p {
    font-size: 18px;
  }

  .intro h1,
  .h1-style {
    font-size: 38px;
    line-height: 40px;
  }

  .services h2 {
    font-size: 34px;
  }

  .service-items {
    margin: 20px 0;
  }

  .service-item {
    font-size: 18px;
  }

  footer p {
    font-size: 18px;
  }

  .overlay span {
    font-size: 27px;
    line-height: 24px;
  }

  .button {
    font-size: 16px;
  }

  .cta {
    padding: 20px;
    gap: 0;
  }

  footer {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  p {
    font-size: 16px;
  }

  .intro h1,
  .h1-style {
    font-size: 30px;
    line-height: 32px;
  }

  .services h2 {
    font-size: 28px;
  }

  .service-item {
    font-size: 16px;
    min-width: 300px;
  }

  footer p {
    font-size: 16px;
  }

  .button {
    font-size: 14px;
    width: 150px;
    padding: 15px;
  }
}
