/* Beta-info spesifikk styling */

/* Page-spesifikk bakgrunn og layout */
body {
  color: #ffffff;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Beta header styling */
.beta-header {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 167, 225, 0.3);
}

.beta-header h1 {
  color: #00A7E1;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.beta-header .intro {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #e0e0e0;
}

/* Section overskrifter */
section h2 {
  color: #00A7E1;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 167, 225, 0.5);
  padding-bottom: 0.5rem;
}

/* Første section uten top margin */
section:first-of-type h2 {
  margin-top: 0;
}

/* Paragraf tekst */
section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* Strong elementer i paragrafer */
section p strong {
  color: #00A7E1;
  font-weight: 600;
}

/* Liste styling */
section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

section li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Bullet points som lyseblå prikker */
section li::before {
  content: "•";
  color: #00A7E1;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

/* Strong elementer i lister - lyseblå */
section li strong {
  color: #00A7E1;
  font-weight: 600;
}

/* Tekstinnhold etter strong i lister - hvit */
section li strong + span,
section li strong:after {
  color: #ffffff;
}

/* Spesiell styling for underoverskrifter */
section p strong:only-child {
  color: #00A7E1;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* CTA section styling */
.cta-center {
  text-align: center;
  margin: 2.5rem 0;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #00A7E1 0%, #0088b8 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 167, 225, 0.3);
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, #0088b8 0%, #006b94 100%);
  box-shadow: 0 6px 20px rgba(0, 167, 225, 0.4);
  transform: translateY(-2px);
}

/* Container padding justert for beta-siden */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Footer styling justert for mørk bakgrunn */
footer {
  background: rgba(0, 0, 0, 0.3);
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 167, 225, 0.3);
}

footer h4 {
  color: #00A7E1;
}

footer p, footer a {
  color: #e0e0e0;
}

footer a:hover {
  color: #00A7E1;
}

/* Responsiv design */
@media (max-width: 768px) {
  .beta-header h1 {
    font-size: 2rem;
  }
  
  .beta-header .intro {
    font-size: 1.1rem;
  }
  
  section h2 {
    font-size: 1.7rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  section {
    margin-bottom: 2rem;
  }
}

/* Dark mode kompatibilitet */
@media (prefers-color-scheme: dark) {
  /* Siden er allerede mørk, så ingen endringer nødvendig */
}