/* Sektioner */
.flow-section {
  background: var(--hvid);
  padding: 2rem 2.5rem;
  margin-bottom: 4rem;
  border-radius: 8px;
  border-left: 4px solid var(--rød);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Overskrifter */
.flow-section h1 {
  font-size: 36px;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--rød);
  padding-bottom: 0.4rem;
}

.flow-section h2 {
  margin-top: 2rem;
  font-size: 28px;
  border-bottom: 2px solid var(--lys-grå);
  padding-bottom: 0.3rem;
}

.flow-section h3 {
  margin-top: 2rem;
  font-size: 22px;
  color: var(--rød);
}

/* Brødtekst */
.flow-section p {
  margin: 1rem 0 1.5rem 0;
  line-height: 1.7;
}

/* Billeder */
.flow-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease;
}

/* Hover-effekt */
.flow-image:hover {
  transform: scale(1.02);
}

/* Horisontal separator */
hr {
  margin: 4rem auto;
  border: none;
  border-top: 2px solid var(--lys-grå);
  width: 70%;
}

/* Link i teksten */
.flow-section a {
  font-weight: 600;
  color: var(--rød);
  text-decoration: none;
  position: relative;
}

flow-section a.btn-primary {
  color: var(--hvid);
}

.flow-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--rød);
  transition: width 0.3s ease;
}

.flow-section a:hover::after {
  width: 100%;
}

/* Header – gør den ens med dit redesign */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hvid);
  padding: 1.2rem 2rem;
  border-bottom: 3px solid var(--rød);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */
header .navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

header .navigation a {
  text-decoration: none;
  color: var(--sort);
  font-weight: 500;
  position: relative;
}

header .navigation a:hover {
  color: var(--rød);
}

header .navigation a:hover::after,
header .navigation a.active::after {
  width: 100%;
}

header .navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 0;
  background: var(--rød);
  transition: width 0.25s ease;
}

/* Responsiv */
@media (max-width: 800px) {
  .flow2-img {
    width: 100%;
  }
}

/* Responsiv */
@media (max-width: 850px) {
  header .navigation ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .flow-section {
    padding: 1.5rem;
  }

  .flow-section h1 {
    font-size: 28px;
  }

  .flow-image {
    width: 100%;
  }
}
