* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #e8e8e8;
  font-family: Arial, Helvetica, sans-serif;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 2px solid #075a9f;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.request {
  color: #ffffff;
  background: #075a9f;
}

.download {
  color: #075a9f;
  background: #ffffff;
}

.actions a:hover {
  opacity: 0.85;
}

.actions a:focus-visible {
  outline: 3px solid #58f1ef;
  outline-offset: 3px;
}

.brochure {
  width: min(100%, 810px);
  margin: 0 auto;
  background: #ffffff;
}

.brochure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  body {
    background: #ffffff;
  }

  .actions {
    gap: 10px;
    padding: 10px;
  }

  .actions a {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0 8px;
    font-size: 14px;
    white-space: nowrap;
  }
}
