.access-notice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 6px;
  gap: 16px;
  color: white;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .access-notice {
    flex-direction: column;
    align-items: flex-start;
  }
}

.access-notice p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.access-notice a {
  color: white;
  text-decoration: underline;
}

.access-notice.pending {
  background-color: #122A64;
}

.access-notice.denied {
  background-color: #DD0031;
}

.page-wrapper {
  background-color: #F8F9FA;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 82px 0 120px 0;
  height: 444px;
  background-color: #122A64;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 42, 100, 0.8) 0%, rgba(18, 42, 100, 0.8) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-container .hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .hero-container {
    padding: 20px;
  }
}

.hero-container section h5 {
  color: white;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .hero-container section h5 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .h1.center {
  text-align: center;
}

.archive-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.archive-steps.space-between {
  justify-content: space-between;
}

.archive-steps .step-item {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 24px;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(119, 136, 157, 0.2);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.archive-steps .step-item .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 1;
  border-radius: 50%;
  background-color: #1B4098;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.archive-steps .step-item .step-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 8px;
  color: #000000;
  font-weight: 600;
}

.archive-steps .step-item .step-description {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .archive-steps {
    gap: 16px;
  }
  .archive-steps .step-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
  }
}

p a {
  color: #1B4098;
  text-decoration: none;
  font-weight: 600;
}

p a:hover {
  text-decoration: underline;
}

.max-two-thirds {
  margin: 0 auto 24px 0;
}

.max-two-thirds.blue {
  color: #1B4098;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .max-two-thirds.blue {
    max-width: 66.666%;
    font-size: 24px;
  }
}

