body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.9;
  margin: 0;
  padding: 0;
  background-color: #070E2A;
  color: #E0E1E4;
}
header, footer {
  background-color: #070E2A;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}
header h1, footer p {
  margin: 0;
}

h1 {
  font-size: 32px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  padding: 20px;
  background: #151D37;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}
section {
  margin-bottom: 20px;
}
h1 {
  color: #ffffff;
  border-bottom: 2px solid #353B52;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
h2 {
  color: #ffffff;
  border-bottom: 2px solid #353B52;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
table, th, td {
  border: 1px solid #e8e8e8;
}
th, td {
  padding: 10px;
  text-align: left;
}
th {
  background: #e8e8e8;
  color: #070E2A;
}
a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.buttons a {
  color: #fff;
  font-weight: bold;
  background-color: #e45809;
  text-decoration: none;
  border-radius: 22px;
  padding: 6px 24px;
}

.buttons a:first-of-type {
  font-weight: lighter;
  background-color: transparent;
  border: 2px solid #353b52;
}

header {
  display: flex;
  justify-content: center;
}

header > div {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttons {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.logo {
  width: 210px;
}

.main_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer_up {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

footer {
  display: flex;
  justify-content: center;
}

footer > div {
  width: 90%;
  flex-direction: column;
  max-width: 1200px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer_links {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  line-height: 26px;
  font-weight: lighter;
  font-size: 14px;
}

.footer_images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 33%;
  justify-content: center;
}

.footer_images img {
  width: 60px;
}

.image_container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.image_container > img {
  width: 45%;
}

.text_image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.center_image {
  width: 100%;
  margin-top: 20px;
}

.text_image img {
  width: 47%;
}

.text_image > div {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer_up {
    flex-direction: column;
  }

  .footer_images {max-width: 100%;}
}

@media (max-width: 720px) {
  .image_container {
    flex-direction: column;
  }

  .image_container > img {
    width: 100%;
  }

  header > div {
    flex-direction: column;
  }
}