section {
  max-width: 88%;
  margin: 8% auto;
}

.hero img {
  width: 100%;
  height: 760px;
  filter: brightness(0.72);
}
.hero .message {
  position: absolute;
  top: 52%;
  left: 4%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
}
.hero .caption {
  position: absolute;
  right: 2%;
  bottom: 4%;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  text-align: right;
}

.about {
  margin-top: 4%;
  text-align: center;
}
.about p { margin: 2%;}
.about img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 720px;
  border-radius: 24px;
  margin: 4% auto;
  background-position: center;
}

.service {
  margin: 8% auto;
  text-align: center;
}
.service .cards {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 4% 2%;
  margin: 4% auto;
}
.service .cards .card {
  overflow: hidden;
  box-shadow: 0 0px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding-bottom: 2%;
}
.service .cards .card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  background-position: center;
}
.service .cards .card .content {
  padding: 4%;
  display: flex;
  flex-direction: column;
}
.service .cards .card .content h3 {
  font-size: 1.17em;
  margin: 8px 0 0 0 !important;
}
.service .cards .card .content p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.service .cards .card .content a {
  display: block;
  width: 160px;
  background: black;
  color: white;
  border-radius: 32px;
  text-align: center;
  text-decoration: none;
  padding: 4% 0;
  margin: 2% auto 4% auto;
}
.service .cards .card .content a:hover {
  opacity: 0.5;
}

.contact {
  align-items: center;
  margin: 4% auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
}
.contact .contact-info {
  margin: 8%;
}
.contact p {
  margin: 8% 4%;
}
.contact a {
  display: block;
  width: 280px;
  background: black;
  color: white;
  border-radius: 32px;
  text-align: center;
  text-decoration: none;
  padding: 4% 0;
}
.contact a:hover {
  opacity: 0.5;
}
.contact iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 24px;
}
