body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #202124;
  background:
    radial-gradient(circle at top, rgba(26, 115, 232, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.info-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.info-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.info-brand {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  color: #202124;
  letter-spacing: -0.04em;
  line-height: 1;
}

.info-brand__fixed {
  color: #202124;
}

.info-brand__accent {
  background: linear-gradient(90deg, #1e3a8a, #1a73e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-brand__mark {
  color: #c62828;
  margin-left: 2px;
}

.info-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-nav a,
.info-back {
  color: #5f6368;
  text-decoration: none;
  font-size: 14px;
}

.info-nav a:hover,
.info-back:hover {
  color: #1a73e8;
  text-decoration: underline;
}

.info-main {
  width: min(860px, calc(100% - 32px));
  margin: 24px auto 40px;
  background: #ffffff;
  border: 1px solid #dfe1e5;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  padding: 32px;
}

.info-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f6368;
}

.info-main h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
}

.info-main__title--compact {
  font-size: clamp(27px, 3.4vw, 36px) !important;
  line-height: 1.15;
}

.info-main p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #3c4043;
}

.info-section {
  margin-top: 28px;
}

.info-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #202124;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  line-height: 1.7;
  color: #3c4043;
}

.info-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #63b556;
  box-shadow: 0 1px 2px rgba(76, 175, 80, 0.16);
}

.info-list li::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.info-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #d2e3fc;
  color: #174ea6;
}

.info-field {
  display: block;
  margin-top: 18px;
}

.info-field span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #202124;
}

.info-field textarea {
  width: 100%;
  min-height: 190px;
  box-sizing: border-box;
  border: 1px solid #d0d5dd;
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  line-height: 1.6;
  color: #202124;
  background: #ffffff;
  resize: vertical;
}

.info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.info-button {
  border: 1px solid #dfe1e5;
  background: #ffffff;
  color: #202124;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

.info-button:hover {
  background: #eef3fd;
  border-color: #bfd7ff;
}

.info-button--primary {
  background: #1a73e8;
  border-color: #1a73e8;
  color: #ffffff;
}

.info-button--primary:hover {
  background: #1765c1;
  border-color: #1765c1;
}

.info-status {
  margin: 14px 0 0;
  min-height: 24px;
  color: #5f6368;
}

.info-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 24px 28px;
}

.info-footer a {
  color: #5f6368;
  text-decoration: none;
  font-size: 14px;
}

.info-footer a:hover {
  color: #1a73e8;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .info-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .info-main {
    padding: 24px 18px;
  }

  .info-list li {
    padding-left: 34px;
  }
}
