@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;900&display=swap');

body {
  font-family: 'Inter',  sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: whitesmoke;
  
}

header h1 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

header p {
  font-size: 1em;
  color: #134e55;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.service {
  width: 48%;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 20px;
  background-color: #134e55;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.service img {
  max-width: 150px;
  height: 150px;
  border-radius: 5px;
  margin-right: 20px;
  border-radius: 75px;
}


.service-details {
  flex: 1;
}

.service-details h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #134e55;
}

.service-details p {
  font-size: 1em;
  line-height: 28px;
  text-align: justify;
}

/* Responsive styling */
@media only screen and (max-width: 768px) {
  .service {
    width: 100%;
    flex-direction: column;
  }

  .service img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  header h1 {
    font-size: 1.5em;
  }
}