:root {
  --brand-red: #E03122;
  --black: #000;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
body {
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}
header {
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-symbol {
  height: 80px;
}

nav a {
  color: var(--brand-red);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  text-decoration: underline;
}
.hero {
  text-align: center;
  padding: 3rem 2rem 0;
}
.hero img {
  height: 280px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta a {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.section {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: auto;
}
.section h1, .section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.section ul, .section ol {
  margin-left: 1rem;
  padding-left: 1rem;
}
blockquote {
  border-left: 4px solid var(--brand-red);
  padding-left: 1rem;
  font-style: italic;
  margin: 1rem 0;
}
footer {
  background: var(--black);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
footer p, footer a {
  color: var(--white);
  margin: 0.5rem 0;
}
footer a {
  color: var(--brand-red);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}


@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
.logo-symbol {
  height: 80px;
  display: none;
}
/*  nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }*/

  nav.active {
    display: flex;
  }

  nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  nav a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

.hero img {
  height: 180px;
  margin-bottom: 1rem;
}
  .hero p {
    font-size: 1rem;
  }

  .cta a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 1.5rem 1rem;
  }
}