:root {
  --argos-red: #ee3124;
  --page-bg: #ececec;
  --text: #111;
  --muted: #666;
  --border: #ee3124;
  --input-border: #c9c9c9;
  --success-bg: #e6f7ea;
  --success-border: #2e8b57;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--page-bg);
  color: var(--text);
}
a { color: inherit; }
.page {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 16px 20px 28px;
}
.logo {
  width: 94px;
  height: 82px;
  background: var(--argos-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  overflow: hidden;
  flex: 0 0 auto;
}
.logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 94px;
  height: 82px;
  object-fit: contain;
}
.panel {
  width: min(980px, calc(100vw - 170px));
  background: #fff;
  border: 4px solid var(--border);
  border-radius: 0 28px 28px 28px;
  overflow: hidden;
}
.header {
  background: var(--argos-red);
  color: #fff;
  padding: 18px 22px;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.05;
}
.content {
  background: #efefef;
  padding: 18px 22px 28px;
}
.banner {
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  padding: 8px 16px;
  margin-bottom: 16px;
}
h1,h2,h3,h4,p { margin-top: 0; }
h2 {
  font-size: 26px;
  margin-bottom: 18px;
}
h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
h4 {
  font-size: 18px;
  margin-bottom: 14px;
}
p, li, td, label, input, select, button, a.button, ol {
  font-size: 16px;
  line-height: 1.45;
}
table.product-table {
  border-collapse: collapse;
  margin: 10px 0 18px;
  width: 100%;
}
.product-table td {
  padding: 2px 8px 2px 0;
  vertical-align: top;
}
.product-table td:first-child {
  width: 105px;
  white-space: nowrap;
}
.serial-image-wrap {
  width: 100%;
  max-width: 700px;
  margin: 12px 0 18px;
}
.serial-image-wrap img {
  width: 100%;
  height: auto;
  border: 1px solid #90a5c2;
  background: #fff;
  display: block;
}
.questionsform { margin-top: 18px; }
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
legend {
  position: absolute;
  left: -9999px;
}
.inputcontainer { margin-bottom: 16px; }
.inputrequired::after {
  content: " ★";
  color: #f0bf00;
}
label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--input-border);
  background: #fff;
}
.button_container {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.button,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  appearance: none;
  border: 4px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 10px 24px;
  min-width: 104px;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover { background: #fafafa; }
.hidden { display: none !important; }
.faq h4 {
  font-size: 16px;
  margin: 18px 0 6px;
}
.notice {
  background: #fff6d8;
  border-left: 4px solid #f0bf00;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.notice-soft {
  background: #fff;
  border-left-color: #ee3124;
}
.notice-success {
  background: var(--success-bg);
  border-left: 4px solid var(--success-border);
}
.address-lookup-block {
  margin: 18px 0 8px;
  padding-top: 8px;
}
.link-line a {
  color: #163dd5;
}
ol.privacy-list {
  padding-left: 28px;
}
@media (max-width: 760px) {
  .page { padding: 10px; gap: 10px; }
  .logo { display: none; }
  .panel { width: 100%; }
  .header { font-size: 28px; }
  .banner { font-size: 22px; }
}
