* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f6fa;
  color: #111;
  margin: 0;
  padding: 0 10px;
}
.main-content {
  width: 100%;
  max-width: 850px;
}
.main-content-container {
  width: 100%;
  padding: 20px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  background: #fafbfd;
  border-radius: 18px;
  border: 1px solid #ebedf4;
}
.title-content {
  background-color: #123673;
  padding: 15px 20px;
  border-radius: 18px 18px 0 0;
}

.s-title {
  font-size: 45px;
  line-height: 1;
  font-weight: 800;
  color: white;
  width: 100%;
}

.s-subtitle {
  font-size: 20px;
  color: white;
  margin-top: 20px;
}

.list-content {
  width: 95%;
  margin: 25px auto;
  border: 1px solid #ebedf4;
  border-radius: 20px;
  background: white;
}

.list-items {
  width: 100%;
}

.left-field {
  color: #123673;
  font-weight: 800;
  font-size: 20px;
}
.right-field {
  color: #262626;
  font-size: 22px;
  font-weight: 400;
  margin-left: 10px;
	pointer-events: none;
}

.right-field a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

.info-row {
  display: grid;
  grid-template-columns: 35% 65%;
  border-bottom: 1px solid #ebedf4;
  padding: 20px 15px;
}

.info-row:last-child {
  border-bottom: none;
}
