@charset "utf-8";

.custom-hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 20px;
}
.custom-hero img {
  width: 250px;
  height: auto;
  border-radius: 4px;
}
.custom-hero-text {
  text-align: left;
  padding-top: 0;
}
.custom-hero-text .custom-column {
  display: block;
  border: none;
  padding: 0;
}
.custom-hero-text .custom-column-title {
  display: inline-block;
  margin-right: 0;
  margin-bottom: 15px;
}
.custom-column-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.custom-column {
  display: inline-flex;
  align-items: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 20px 30px;
  text-align: left;
}
.custom-column-title {
  background-color: #555;
  color: #fff;
  font-size: 16px;
  padding: 5px 15px;
  margin-right: 30px;
}
.custom-column-body {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-column-body li {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  padding-left: 0;
  text-indent: 0;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  .custom-hero {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .custom-column {
    display: block;
    padding: 20px 10px;
  }
  .custom-column-title {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 15px;
  }
}