header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 0px;
}

main {
  max-width: 800px;
  margin: 0 auto;  
}

p {
  padding:20px;
}

.services-lists {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; 
  margin-bottom: 20px;
}

.services-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  font-family: 'Open Sans', sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 8px; 
  box-sizing: border-box;
}

.services-list ul {
  margin-top: 0;
}

.list-title {
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .services-lists {
    grid-template-columns: 1fr;
  }
  .services-list {
    padding-top: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .services-list ul {
    margin-top: 0;
    margin-bottom: 0;
  }
}
