* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.site-header {
  background: #f3f5fc;
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
}

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

.site-main {
  padding: 32px 0 48px;
}

.content {
  max-width: 760px;
  margin: 0 auto;
}

h1,
h2 {
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2937;
}

h1 {
  font-size: clamp(30px, 4vw, 44px);
}

h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 32px);
}

p,
ul,
ol,
figure {
  margin: 0 0 20px;
}

ul,
ol {
  padding-left: 1.4rem;
}

li + li {
  margin-top: 8px;
}

a {
  color: #428bca;
}

a:hover,
a:focus {
  color: #e66212;
}

.separator {
  width: 100%;
  height: 4px;
  margin: 0 0 28px;
  background: #5a80b1;
  border-radius: 999px;
}

figure {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.cta {
  margin: 24px 0 28px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 6px;
  background: #c700cb;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.btn:hover,
.btn:focus {
  color: #fff;
  background: #a600aa;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid #e5e7eb;
  color: #333;
  background: #fff;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1080px);
  }

  .site-header {
    padding: 18px 0;
  }

  .site-main {
    padding-top: 24px;
  }
}

.lead {
  font-size: 1.08rem;
  color: #1f2937;
}

.notice {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid #5a80b1;
  border-radius: 6px;
  background: #f3f5fc;
  color: #253041;
}

h3 {
  margin: 26px 0 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #1f2937;
}

code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #f3f5fc;
  font-family: Consolas, Monaco, monospace;
  font-size: .95em;
}

table,
.info-table {
  width: 100%;
  margin: 22px 0 26px;
  border-collapse: collapse;
  border: 1px solid #cfd8e6;
  background: #fff;
}

table th,
table td,
.info-table th,
.info-table td {
  padding: 12px 14px;
  border: 1px solid #cfd8e6;
  vertical-align: top;
  text-align: left;
}

table th,
.info-table th {
  width: 32%;
  background: #f3f5fc;
  color: #1f2937;
  font-weight: 700;
}

table tr:nth-child(even) td,
.info-table tr:nth-child(even) td {
  background: #fbfcff;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  padding: 16px 18px;
  border: 1px solid #d9e1ef;
  border-radius: 8px;
  background: #fff;
}

.faq-item h3 {
  margin-top: 0;
}

.faq-item p {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  table,
  .info-table {
    font-size: .95rem;
  }

  table th,
  table td,
  .info-table th,
  .info-table td {
    padding: 10px;
  }
}
