body {
  background-color: #000e1a;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px;
  line-height: 1.8;
  margin-top: 80px;
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
h2 {
  color: #00ff9f;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}
a {
  color: #b84dff;
  text-decoration: underline;
}
p {
  margin-bottom: 16px;
}
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 10px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background-color: #001c3b;
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 200px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #00ff73;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .header-flex {
    height: 80px;
  }

  .logo {
    font-size: 28px;
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo-img {
    height: 40px;
    width: auto;
    display: block;
  }

  .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-left: 10px;
  }

  .nav a {
    font-size: 17px;
  }
}

.footer {
  background-color: #051229;
  color: #ccc;
  padding: 60px 40px 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  color: #ccc;
  font-size: 14px;
  background-color: #011633;
}

.footer-text {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #ccc;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  color: #aaa;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.wrap {
  width: 1200px;
  margin: auto;
}
