* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #003B5C;
  color: #F7F9FB;
  line-height: 1.7;
  padding-bottom: 70px;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

h1 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.2;
  text-align: center;
}

.content {
  background: #064B73;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 30px;
}

.content p {
  margin: 0 0 22px;
  font-size: 16px;
  opacity: 0.92;
}

.content p:last-child {
  margin-bottom: 0;
}

.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #002F49;
  display: flex;
  z-index: 1100;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cta a {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: #F7F9FB;
  text-decoration: none;
  font-weight: bold;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.cta a:last-child {
  border-right: none;
}

/* 🔥 Tving header og footer til marineblå */
header,
.site-header,
nav {
  background: #003B5C !important;
}

footer,
.site-footer {
  background: #003B5C !important;
}

@media (max-width: 768px) {
  main {
    padding: 28px 16px 90px;
  }

  h1 {
    font-size: 28px;
  }

  .content {
    padding: 22px;
  }
}