@font-face {
  font-family: 'Eurostile';
  src: url('assets/fonts/EurostileBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Aptos';
  src: url('/assets/fonts/Aptos.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #002060;
}

body {
  background-color: white;
  color: #000;
  font-family: 'Aptos', sans-serif;
}

.main {
  max-width: 980px;
  margin: 0 auto;
  padding: 150px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.head-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 750px;
  align-self: center;
}

.head-box__title {
  font-family: 'Eurostile', sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
  margin: 0;
}

.head-box__lade {
  font-size: 24px;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  color: var(--primary);
}

.content-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-box__title {
  font-weight: bold;
  font-size: 21px;
  color: var(--primary);
  text-align: center;
}

.content-box p {
  font-size: 21px;
  color: var(--primary);
  text-align: center;
  line-height: 1.4;
}

.notice {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.notice__title {
  font-size: 13px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 4px;
  text-align: center;
}

.notice p {
  font-size: 13px;
  color: var(--primary);
  line-height: 1.4;
  text-align: center;
}

.notice a {
  color: #467886;
}