
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background-color: #f9f9f9;
      color: #333;
      scroll-behavior: smooth;
    }

    .top-links {
      font-size: 0.85rem;
      color: #666;
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      padding: 0.5rem 2rem;
      background-color: #f1f1f1;
    }

    .top-links a {
      color: #666;
      text-decoration: none;
      transition: color 0.3s;
    }

    .top-links a:hover {
      color: #003366;
    }

    header {
      background-color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 1.9rem;
      z-index: 999;
      transition: all 0.3s ease;
    }

    header.shrink {
      padding: 0.5rem 2rem;
    }

    header.shrink .logo img {
      height: 30px;
    }

    header.shrink nav a {
      font-size: 0.9rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo img {
      height: 40px;
      transition: height 0.3s ease;
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: #003366;
      font-weight: bold;
      position: relative;
      transition: 0.3s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: #0066cc;
      transition: 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: #0066cc;
      transform: translateY(-2px);
    }

    main {
      max-width: 1000px;
      margin: auto;
      padding: 2em;
      padding-top: 3em;
    }

    section {
      margin-bottom: 3em;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    h1, h2 {
      color: #284b63;
      font-family: 'Merriweather', serif;
    }

    footer {
      background-color: #3c6e71;
      color: white;
      text-align: center;
      padding: 1em;
      font-size: 0.9em;
    }

    .kontaktkort {
      background-color: #e0e0e0;
      padding: 1em;
      border-radius: 8px;
      max-width: 400px;
    }

    .kolumner {
      display: flex;
      flex-wrap: wrap;
      gap: 2em;
    }

    .kolumner > div {
      flex: 1 1 45%;
    }

    img {
      max-width: 100%;
      border-radius: 8px;
    }

    @media (max-width: 700px) {
      .kolumner {
        flex-direction: column;
      }
    }

    a {
      color: #1e88e5;
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
    }

    a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #1e88e5, #42a5f5);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    a:hover {
      color: #1565c0;
      transform: scale(1.05);
    }

    a:hover::after {
      transform: scaleX(1);
    }
    .styrelse-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.styrelse-grid {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.styrelse-person {
  background-color: #f1f5f8;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  flex: 1 1 200px;
  text-align: center;
  transition: transform 0.3s ease;
}

.styrelse-person:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgb(0 0 0 / 0.15);
}

.styrelse-person h3 {
  margin-bottom: 0.3rem;
  color: #284b63;
}

.styrelse-person p {
  font-weight: 600;
  color: #0066cc;
  font-size: 1rem;
}

.styrelse-info {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
  text-align: center;
}
/* Nyheter-sektion styling */
.nyheter-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.nyheter-section h2 {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.nyhet {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.nyhet:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.nyhet h3 {
  margin-top: 0;
  color: #005a87;
  font-weight: 600;
  font-size: 1.4rem;
}

.datum {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.7rem;
  font-style: italic;
}

.nyhet p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}
