/*
* { box-sizing: border-box; margin: 0; padding: 0; }
*/
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background: #f4f4f4;
}
a { color: #0066cc; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Layout – centerColumn style */
#mainWrapper {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 12px rgba(0,0,0,0.08);
}
.centerColumn {
  padding: 20px 25px 40px;
}

/* Headers */
h1 {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 8px;
  border-bottom: 3px solid #c00;
  padding-bottom: 8px;
}
h2 {
  font-size: 20px;
  color: #222;
  margin: 28px 0 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}
h3 {
  font-size: 16px;
  color: #333;
  margin: 18px 0 8px;
}
.subhead {
  font-size: 15px;
  color: #555;
  margin-bottom: 18px;
}

/* Hero / intro box */
.hero {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #fff;
  padding: 22px 25px;
  margin: 0 -25px 25px;
  border-bottom: 4px solid #c00;
}
.hero h1 { color: #fff; border-bottom: none; margin-bottom: 6px; }
.hero .subhead { color: #cdd5e0; margin-bottom: 0; }
.hero strong { color: #ffcc00; }

/* Feature list */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
  margin: 15px 0 25px;
}
.feature-grid li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  margin-bottom: 4px;
}
.feature-grid li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c00;
  font-weight: bold;
}

/* Compatibility tables */
.compat-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 13px;
}
.compat-table th {
  background: #1a2332;
  color: #fff;
  padding: 9px 12px;
  text-align: left;
}
.compat-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}
.compat-table tr:nth-child(even) { background: #f8f9fa; }
.compat-table .brand-kw { color: #0066a1; font-weight: bold; }
.compat-table .brand-pb { color: #c00; font-weight: bold; }

/* Callout boxes */
.callout {
  background: #fff8e6;
  border-left: 5px solid #e6a800;
  padding: 14px 18px;
  margin: 20px 0;
}
.callout.important {
  background: #fdeaea;
  border-left-color: #c00;
}
.callout.positive {
  background: #e8f5e9;
  border-left-color: #2e7d32;
}
.callout h3 { margin-top: 0; color: #8a6d00; }
.callout.important h3 { color: #c00; }
.callout.positive h3 { color: #2e7d32; }

/* Buttons */
.btn {
  display: inline-block;
	color: #fff !important;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none !important;
  margin: 8px 10px 8px 0;
  border: none;
  cursor: pointer;
}
.btn.red {
  background: #c00;
  
}
.btn.orange {
  background: #f6963e !important;
}
.btn.orange:hover {
  background: #e8760c !important;
}
.btn:hover { background: #a00; }
.btn-secondary {
  background: #1a2332;
}
.btn-secondary:hover { background: #0f1620; }

/* Camera list */
.camera-list {
  margin: 10px 0 20px;
  padding-left: 20px;
}
.camera-list li { margin-bottom: 4px; }

/* Two-column layout helper */
.two-col {
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
.two-col > div { flex: 1; }

/* Footer note */
.page-note {
  font-size: 12px;
  color: #666;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

@media (max-width: 700px) {
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { flex-direction: column; }
  .centerColumn { padding: 15px; }
  .hero { margin: 0 -15px 20px; }
}