body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
    color: #1e293b;
  }
  
  /* Header */
  .header {
    text-align: center;
    padding: 3rem 1rem;
  }
  
  .header-image {
    max-width: 400px;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .title {
    font-size: 2.5rem;
    color: #ea580c;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 1.25rem;
    color: #475569;
  }
  
  .status {
    font-size: 1.1rem;
    color: #64748b;
  }
  
  /* Kontakt sektion */
  .contact {
    text-align: center;
    padding: 0rem 1rem 3rem 1rem;
  }
  
  .contact h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Visitkort */
  .cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 800px;   /* Ny begrænsning */
    margin: 0 auto;     /* Centrer */
  }
  
  .cards .card img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .cards .card img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }
  
  @media (min-width: 768px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Footer fix */
  .footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 3rem 1rem;
    margin-top: 3rem;
    width: 100%;
  }

  .footer-content {
    max-width: 1200px;   /* Øget container-bredde */
    margin: 0 auto;      /* Centrer indhold */
    display: grid;
    gap: 2rem;           /* Reduceret spacing mellem kolonner */
    text-align: center;
    justify-items: center; /* Centrer hver kolonne */
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centrer indhold i hver kolonne */
    text-align: center;
    min-width: 200px;    /* Minimum bredde for konsistens */
  }

  .footer-col h3,
  .footer-col h4 {
    color: #fb923c;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .footer-col p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
  }

  .footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0;
  }

  /* Gruppering af kontaktpersoner */
  .footer-col p:has(+ p) {
    margin-bottom: 0.1rem; /* Minimalt mellemrum før næste person */
  }

  /* Specifik mellemrum før Lars - kun i kontakt kolonnen */
  .footer-col:nth-child(2) p:last-of-type {
    margin-top: 1rem; /* Mellemrum mellem Nicklas og Lars */
  }

  .footer-col a:hover {
    color: #fb923c;
  }

  .footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr 1fr 1fr; /* Lige brede kolonner */
      text-align: center;
      gap: 2.5rem; /* Reduceret spacing på desktop */
    }
    
    .footer-col {
      align-items: flex-start; /* Venstre-align på desktop */
      text-align: left;
    }
  }

  @media (min-width: 1024px) {
    .footer-content {
      gap: 3rem; /* Reduceret spacing på store skærme */
    }
  }
  