/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  background: #fafafa;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Containers */
.container {
  width: 960px;
  max-width: 95%;
  margin: 0 auto;
}

/* Header & Nav */
.site-header {
  background: #E01C25;
  color: #fff;
}
.site-header h1 {
  font-size: 2em;
  padding: 20px 0;
  text-transform: uppercase;
}
.main-nav ul {
  list-style: none;
  display: flex;
  background: #E01C25;
}
.main-nav li {
  margin-right: 20px;
}
.main-nav li:last-child {
  margin-right: 0;
}
.main-nav a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-transform: uppercase;
}
.main-nav .active a,
.main-nav a:hover {
  background: #222;
}

/* Intro */
.intro {
  display: flex;
  padding: 40px 0;
}
.profile img {
  width: 300px;
  height: auto;
  border-radius: 4px;
}
.profile-desc {
  margin-left: 30px;
}
.profile-desc p {
  margin-bottom: 15px;
  color: #555;
}

/* Services */
.services {
  text-align: center;
  padding: 20px 0;
}
.services p {
  margin-bottom: 10px;
  color: #666;
}

/* Attachments */
.attachments h2 {
  margin-bottom: 10px;
  color: #222;
}
.attachments table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}
.attachments td {
  padding: 8px 6px;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.attachments .icon {
  width: 24px;
}
.attachments .size {
  text-align: right;
  width: 60px;
}
.attachments tr:nth-child(even) {
  background: #f9f9f9;
}

/* Footer */
.site-footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9em;
}
.site-footer p + p {
  margin-top: 5px;
}
