* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

/* Header */
.header {
  background: #2c3e50;
  color: #fff;
  padding: 20px 0;
  border-bottom: 3px solid #c00;
}
.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  font-size: 24px;
  font-weight: bold;
}
.logo a {
  color: #fff;
  text-decoration: none;
}
.established {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* Navigation */
.nav {
  background: #2c3e50;
}
.nav ul {
  max-width: 1000px;
  margin: 0 auto;
  list-style: none;
}
.nav li {
  display: inline-block;
}
.nav a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  border-right: 1px solid #34495e;
}
.nav a:hover {
  background: #34495e;
}
.nav a.current,
.nav a.current:hover {
  background: #c00;
}

/* Content area */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}

/* Hero image */
.hero {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
  border: 1px solid #ddd;
}

/* Section images */
.section-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  margin: 30px 0;
  border: 1px solid #ddd;
}

/* Headings */
h1 {
  font-size: 28px;
  margin: 30px 0 15px;
  color: #2c3e50;
  border-bottom: 2px solid #c00;
  padding-bottom: 10px;
}
h2 {
  font-size: 18px;
  margin: 25px 0 15px;
  color: #2c3e50;
  background: #f5f5f5;
  padding: 10px 12px;
}
h3 {
  font-size: 15px;
  margin: 20px 0 10px;
  color: #2c3e50;
  font-weight: bold;
}

/* Paragraphs */
p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Rules */
.rule {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

/* Links */
a {
  color: #c00;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #c00;
  outline-offset: 2px;
}

/* Tables */
table.spec {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: 13px;
}
table.spec th {
  background: #f5f5f5;
  padding: 8px 10px;
  text-align: left;
  font-weight: bold;
  border: 1px solid #ddd;
  width: 25%;
  vertical-align: top;
}
table.spec td {
  padding: 8px 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}

/* Client list */
.client-list {
  list-style: none;
  margin: 20px 0;
}
.client-list li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.client-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.client-name {
  font-weight: bold;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 5px;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 20px 0;
  padding-left: 60px;
}
.timeline li {
  margin-bottom: 20px;
  position: relative;
}
.year {
  position: absolute;
  left: -60px;
  top: 0;
  font-weight: bold;
  color: #c00;
  font-size: 13px;
  width: 50px;
  text-align: right;
}

/* People */
.person {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.person:last-child {
  border-bottom: none;
}
.name {
  font-weight: bold;
  font-size: 16px;
  color: #2c3e50;
}
.title {
  font-style: italic;
  color: #666;
  font-size: 13px;
  margin: 3px 0 5px;
  display: block;
}

/* Homepage section cards */
.section-links {
  margin: 30px 0;
}
.section-card {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  background: #fafafa;
}
.section-card h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.section-card h3 a {
  color: #2c3e50;
  font-size: 16px;
}
.section-card h3 a:hover {
  color: #c00;
}
.section-card p {
  margin-bottom: 0;
  color: #555;
}

/* Inline figures (images with captions) */
.figure {
  margin: 25px 0;
  border: 1px solid #ddd;
  padding: 6px;
  background: #fff;
}
.figure img {
  display: block;
  width: 100%;
  height: auto;
}
.figure-caption {
  font-size: 11px;
  color: #666;
  font-style: italic;
  margin-top: 6px;
  padding: 4px 6px 0;
}

/* Figure floated right for smaller images */
.figure-right {
  float: right;
  width: 380px;
  margin: 10px 0 15px 20px;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #999;
  padding: 30px;
  text-align: center;
  font-size: 11px;
  margin-top: 40px;
  border-top: 3px solid #c00;
  line-height: 1.8;
}
.footer a {
  color: #c00;
}
