/* Main stylesheet */

body {
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1b1b1d;
  color: #fff;
  line-height: 1.6;
}

nav {
  background-color: #242526;
  padding: 10px 0;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline;
  margin: 0 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #EB6F02;
}

header {
  padding: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 3em;
}

.hero-text {
  text-align: center;
  padding: 50px 20px;
}

.primary {
  color: #EB6F02;
}

.white {
  color: white;
}

p {
  font-size: 1.2em;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
}

footer {
  background-color: #111111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

footer a {
  color: #EB6F02;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-text {
    padding: 30px 10px;
  }
  .hero-text h1 {
    font-size: 2em;
  }
  nav .container {
    padding: 0 10px;
  }
  nav li {
    margin: 0 10px;
  }
  .logo img {
    height: 30px;
  }
}