body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
  background: #ffffff;
}

.header {
  padding: 18px 0 0 35px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ring {
  width: 125px;
  height: 125px;
  border: 6px solid #9aa1ad;
  border-radius: 50%;
  position: relative;
}

.circle-main {
  width: 62px;
  height: 62px;
  background: #0d4484;
  color: #cbd5e1;
  border-radius: 50%;
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-small {
  width: 48px;
  height: 48px;
  background: #0d4484;
  border-radius: 50%;
  position: absolute;
  top: 36px;
  right: -31px;
}

.brand {
  font-size: 24px;
}

.brand strong {
  font-size: 34px;
  margin-right: 8px;
}

.content {
  width: 58%;
  margin: 10px auto 45px auto;
}

h1 {
  font-size: 34px;
  margin-bottom: 18px;
}

.release-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 17px;
}

.release-table th,
.release-table td {
  border: 1px solid #d4d4d4;
  padding: 12px 12px;
  height: 24px;
  text-align: left;
  vertical-align: middle;
}

.release-table th {
  background: #3f7fba;
  color: #ffffff;
  font-weight: bold;
}

.release-table .top-head {
  background: #3f7fba;
  color: #ffffff;
}

.release-table .left-head {
  width: 26%;
}

.release-table td {
  background: #ffffff;
}
/* Alternating row colors (zebra striping) */
.release-table tr:nth-child(even) td {
  background: #f7f7f7;
}

.release-table tr:nth-child(odd) td {
  background: #ececec;
}

.release-table tr:nth-child(2) td {
  background: #f3f3f3;
}

a {
  color: #3d7bd9;
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 900px) {
  .content {
    width: 95%;
  }

  .brand strong {
    font-size: 26px;
  }

  .brand {
    font-size: 18px;
  }

  .release-table {
    font-size: 14px;
  }
}
