.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.grid > div {
  padding: 30px;
  border-right: 1px solid orange;
  border-bottom: 1px solid orange;
}
.grid > div:nth-child(2n) {
  border-right: none;
}
.grid > div:nth-last-child(-n + 2) {
  border-bottom: none;
}
h2 {
  margin-top: 0;
  font-size: 24px;
}
p {
  font-size: 16px;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.grid > div {
  padding: 30px;
  border-right: 1px solid orange;
}
.grid > div:nth-child(2n) {
  border-right: none;
}
.grid > div:nth-last-child(-n + 2) {
  border-bottom: none;
}
h2 {
  margin-top: 0;
  font-size: 24px;
}
p {
  font-size: 16px;
  line-height: 1.6;
}

.core-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.core-values img {
  max-width: 48%;
  height: auto;
}
.values-content {
  max-width: 48%;
}
.values-content h2 {
  font-size: 24px;
  border-left: 3px solid #005a9c;
  padding-left: 10px;
}
.values-content p {
  margin-bottom: 15px;
  font-size: 16px;
}
.values-content strong {
  font-weight: 700;
}
.value-bar {
  display: flex;
  margin-top: 30px;
}
.value-bar div {
  flex: 1;
  padding: 10px;
  color: white;
  font-weight: bold;
  text-align: center;
}
.blue {
  background-color: #0078c8;
}
.lightblue {
  background-color: #75a8d1;
}
.midblue {
  background-color: #3398cc;
}
.greyblue {
  background-color: #7b9bad;
}
.darkblue {
  background-color: #005a9c;
}
