body {
  background: #fafbfc;
  color: #232325;
  font-family: 'Rubik', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
header {
  background: #fff;
  padding: 24px 0 12px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 14px;
  box-shadow: 0 0 12px #bdbdfd30;
  margin-right: 10px;
}
.lang-switcher {
  position: absolute;
  top: 24px;
  right: 32px;
}
.lang-switcher select {
  font-size: 1em;
  border-radius: 7px;
  padding: 5px 12px;
  border: 1px solid #eee;
  background: #f5f5fa;
}
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 16px 0 16px;
}
section {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 #3939f404, 0 1.5px 4px #8d3ae820;
  padding: 38px 32px 28px 32px;
}
section.hero {
  background: linear-gradient(117deg, #e5e6fa 0%, #f4f7fd 90%);
  text-align: center;
  box-shadow: 0 8px 32px #6050e60c;
  padding: 44px 18px 40px 18px;
}
.hero-img {
  margin: 24px auto 18px auto;
  display: block;
  max-width: 420px;
  width: 100%;
  border-radius: 17px;
  box-shadow: 0 4px 20px #4c1d9560;
}
.cta-buttons {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.button {
  display: inline-block;
  background: #6d28d9;
  color: #fff;
  text-decoration: none;
  border-radius: 9px;
  padding: 14px 28px;
  font-size: 1.18em;
  font-weight: 600;
  transition: background .17s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #6d28d92a;
  margin: 6px 0;
}
.button.small {
  padding: 8px 18px;
  font-size: 1em;
  background: #ede9fe;
  color: #6d28d9;
  border: 1.5px solid #e9d5ff;
  font-weight: 500;
  box-shadow: none;
}
.button:hover {
  background: #4c1d95;
  color: #fff;
}
.section-title {
  font-size: 2.1em;
  margin-bottom: 18px;
  font-weight: 700;
  color: #22223a;
  text-align: center;
}
ul, ol {
  margin: 0 0 0 24px;
  padding: 0;
  font-size: 1.06em;
}
ul li, ol li {
  margin-bottom: 10px;
}
.faq-block {
  background: #f4f4fd;
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px #6d28d91c;
  font-size: 1.08em;
}
.faq-block strong {
  display: block;
  margin-bottom: 4px;
  color: #6d28d9;
  font-size: 1.08em;
}
.support-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
footer {
  text-align: center;
  padding: 34px 6px 26px 6px;
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 1em;
  color: #a3a3b1;
  margin-top: 40px;
  border-radius: 0 0 18px 18px;
}
/* Адаптив */
@media (max-width: 600px) {
  section, main { padding: 16px 4px 0 4px;}
  section { padding: 22px 7px 18px 7px; border-radius: 11px;}
  .hero-img { border-radius: 9px;}
  .section-title { font-size: 1.35em;}
  .cta-buttons { flex-direction: column; gap: 10px;}
  footer { font-size: 0.95em;}
  .lang-switcher { top: 10px; right: 10px;}
}
