:root {
  --blue: #245a9a;
  --muted: #66727d;
  --border: #dce3e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: #263238;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  width: min(1040px, calc(100% - 64px));
  margin-inline: auto;
  padding: 36px 0 72px;
}

.visual + .visual {
  margin-top: 34px;
}

.showcase-image,
.capture-image {
  display: block;
  width: 100%;
  margin-inline: auto;
  border-radius: 12px;
}

.showcase-image {
  box-shadow: 0 18px 42px rgba(16, 27, 45, 0.14);
}

.capture-image {
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(16, 27, 45, 0.08);
}

.brand-close {
  display: flex;
  justify-content: center;
  padding: 62px 0 8px;
}

.brand-icon {
  width: min(280px, 48vw);
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

footer {
  border-top: 1px solid var(--border);
  background: #f7f9fb;
}

.footer-inner {
  width: min(1040px, calc(100% - 64px));
  margin-inline: auto;
  padding: 46px 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.55;
  text-align: center;
}

footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
  margin: 18px 0;
}

.copyright {
  margin: 16px 0 0;
}

@media (max-width: 700px) {
  .page {
    width: calc(100% - 28px);
    padding: 20px 0 52px;
  }

  .visual + .visual {
    margin-top: 18px;
  }

  .showcase-image,
  .capture-image {
    border-radius: 8px;
  }

  .brand-close {
    padding-top: 42px;
  }

  .footer-inner {
    width: calc(100% - 44px);
    padding: 32px 0;
    font-size: 1.1rem;
  }
}
