* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

/* HEADER */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.menu a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.contact {
  font-size: 13px;
  text-align: right;
}

.contact span {
  display: block;
}

.contact a {
  color: #000;
  text-decoration: none;
}

/* CONTENT OFFSET */
.content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
}

/* HERO */
.hero {
  max-width: 800px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
}

.actions {
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #000;
  color: #fff;
}

.btn.secondary {
  border: 1px solid #000;
  color: #000;
}

/* SERVICES */
.services {
  padding: 40px 0;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  padding: 8px 0;
  font-size: 16px;
}

/* FOOTER */
.footer {
  padding: 40px;
  background: #111;
  color: #fff;
  text-align: center;
}

.footer img {
  height: 40px;
  margin-bottom: 15px;
}

.footer p {
  margin: 6px 0;
  font-size: 14px;
}

.copy {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.8;
}
