body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #071514;
  color: #fff;
  line-height: 1.55;
}

.wrapper,
.content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.headerInner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.logo img {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
}

.headerActions {
  display: flex;
  gap: 10px;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  background: #ef3b24;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
}

.btn.secondary {
  background: #293449;
}

.mainContent {
  padding: 28px 0;
}

.content-block {
  display: grid;
  gap: 26px;
}

.articleIntro {
  padding: 28px 24px;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at top right,
      rgba(128, 52, 174, 0.42),
      transparent 36%
    ),
    linear-gradient(135deg, #112a2a, #161225);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 26px rgba(130, 45, 170, 0.28);
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  text-align: center;
}

h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}

h3 {
  margin: 24px 0 10px;
  font-size: 21px;
  line-height: 1.25;
  text-align: center;
}

p {
  margin: 0 0 14px;
}

section {
  padding: 24px;
  border-radius: 20px;
  background: #10191c;
  border: 1px solid rgba(57, 209, 196, 0.26);
  box-shadow: 0 0 24px rgba(57, 209, 196, 0.12);
}

section.purple {
  border-color: rgba(156, 61, 196, 0.34);
  box-shadow: 0 0 24px rgba(156, 61, 196, 0.18);
}

.general-table-wrapper {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: 14px;
  border: 1px solid rgba(74, 222, 128, 0.18);
}

.general-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #061311;
}

.general-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.general-table th,
.general-table td {
  padding: 14px 16px;
  border: 1px solid rgba(63, 185, 174, 0.32);
  text-align: left;
  vertical-align: top;
}

.general-table th {
  background: #2f716b;
  color: #fff;
  font-weight: 900;
}

.general-table tbody td:first-child {
  width: 28%;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
}

.themeGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.themeCard {
  padding: 18px;
  border-radius: 16px;
  background: #071514;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-weight: 900;
}

ul,
ol {
  margin: 12px 0 16px;
  padding-left: 22px;
}

li {
  margin: 6px 0;
}

.faqItem {
  margin: 18px 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faqItem h3 {
  margin-top: 0;
  text-align: center;
}

.footer {
  padding: 24px 0;
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footerDisclaimer {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #d1d5db;
  text-align: center;
}

.copyright {
  color: #9ca3af;
  font-size: 14px;
  text-align: center;
}

.main {
  padding: 28px 0;
}

.content {
  display: grid;
  gap: 26px;
}

.container {
  display: grid;
  gap: 26px;
}

.content > *,
.container > * {
  min-width: 0;
}

.content button,
.content a.btn,
.content .btn {
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  background: #ef3b24;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  text-decoration: none;
}

.content button:hover,
.content a.btn:hover,
.content .btn:hover {
  background: #d12f1b;
}

.errorPageInner {
  color: #222;
}

.errorPageInner span {
  color: rgba(243, 77, 104, 1);
}

.button-block {
  text-align: center;
}

.content a:not(.btn) {
  color: #39d1c4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content a:not(.btn):hover {
  color: #5fe0d4;
}

@media (max-width: 900px) {
  .themeGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .headerInner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .headerActions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }

  section,
  .articleIntro {
    padding: 18px;
  }

  .themeGrid {
    grid-template-columns: 1fr;
  }

  h1,
  h2,
  h3,
  .footer,
  .footerDisclaimer,
  .copyright {
    text-align: center;
  }
}
