html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: Arial, Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
}

main {
  flex: 1;
}

header {
  width: 100%;
  background: rgba(8, 8, 8, 0.95);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

footer {
  background: var(--color-bg-dark);
  text-align: center;
  padding: 25px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  margin-top: auto;
}

.navbar {
  max-width: var(--max-width);
  margin: auto;
  padding: 16px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section {
  max-width: var(--max-width);
  margin: auto;
  padding: 90px 25px;
}

.page-header {
  padding: 170px 25px 95px;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.65)),
    url("../images/hero/hero-page.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: 56px;
  color: var(--color-red);
  margin-bottom: 15px;
}

.page-header p {
  color: var(--color-text);
  font-size: 20px;
}