/* Base reset */
* {
  box-sizing: border-box;
}

/* Global font */
body {
  margin: 0;
  background: rgb(247, 246, 246);
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  line-height: 1.3;
  font-size: 12px;
}

/* Center the page like the original iWeb layout */
.page-container {
  width: 764px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px;
}

/* Header & navigation */
.site-header {
  background: transparent;
}

.site-nav {
  width: 764px;
  margin: 0 auto;
  font-size: 11px;
  text-align: left;
}

.site-nav a {
  color: #000;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Headings */
h1 {
  font-size: 22px;
  margin: 20px 0 10px;
}

h2 {
  font-size: 18px;
  margin: 30px 0 10px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* Intro image float (matches original feel) */
.intro-image {
  float: right;
  width: 300px;
  margin: 0 0 15px 20px;
}

/* Launch image */
.launch-image {
  float: right;
  width: 315px;
  margin: 0 0 15px 20px;
}

/* Clear floats */
section::after {
  content: "";
  display: block;
  clear: both;
}

/* Footer */
.site-footer {
  width: 764px;
  margin: 40px auto 20px;
  text-align: center;
  font-size: 10.5px;
  color: #000;
}

/* White container already centered */
.page-container {
  width: 764px;
  margin: 0 auto;
  background: #ffffff;
  padding: 20px;
}

/* Menu now lives inside white area */
.site-header {
  margin-bottom: 15px;
}

/* Navigation styling */
.site-nav {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: left;
  margin-top: 0px;
}

.site-nav a {
  color: #000;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

/* Hero image spacing */
.hero {
  margin-top: 10px;
}

.money {
  color: #c00000; /* deep red */
  font-weight: normal;
}

.wrap-image-dick {
  margin: 0px 10px 10px -40px;
}

.wrap-image {
  margin: 0px 10px 10px 0px;
}

.wrap-image-right {
  margin: 0px 0px 0px 25px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;       /* allows wrapping on smaller screens */
  gap: 20px;             /* space between logos */
  justify-content: center; /* center all logos horizontally */
  align-items: center;    /* vertical alignment */
}

.logo-row img {
  display: block;
  max-height: 80px;       /* optional: unify logo height */
  height: auto;
}