body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F9FB;
    color: #001D3D;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .intro {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  }
  
  .intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .intro p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
  }
  
  .section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
  }
  
  .color-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s ease all;
  }
  
  .color-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }
  
  .swatch {
    height: 120px;
  }
  
  .content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .label {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .hex {
    color: #555;
    font-size: 0.85rem;
  }
  
  .copy-button {
    background-color: #EAF4FC;
    border: none;
    color: #0073C6;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 128px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .copy-button:hover {
    background-color: #D3E9F9;
  }
  

  .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
  }
  
  .typography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 1rem;
  }
  
  .type-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease all;
  }
  
  .type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
  
  .type-sample {
    margin-bottom: 0.5rem;
  }
  
  .type-a1 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .type-a2 {
    font-size: 1.75rem;
    font-weight: 600;
  }
  
  .type-a3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .type-a4 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .type-a5 {
    font-size: 1rem;
    font-weight: 400;
  }
  
  .type-link a {
    color: #0073C6;
    font-weight: 500;
    text-decoration: underline;
    font-size: 1rem;
  }
  
  .type-meta {
    font-size: 0.85rem;
    color: #666;
  }
  

  .button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 1.5rem;
  }
  
  .button-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s ease all;
  }
  
  .button-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
  
  .btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 128px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }
  
  .btn-primary {
    background-color: #0073C6;
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #005fa3;
  }
  
  .btn-secondary {
    background-color: #EAF4FC;
    color: #1E3A5F;
  }
  
  .btn-secondary:hover {
    background-color: #D3E9F9;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #0073C6;
    color: #0073C6;
  }
  
  .btn-outline:hover {
    background-color: #EAF4FC;
  }
  
  .btn-disabled {
    background-color: #e0e0e0;
    color: #888;
    cursor: not-allowed;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 2rem;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease all;
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }
  
  .card-image {
    background-size: cover;
    background-position: center;
    height: 180px;
  }
  
  .card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .card-content p {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
  }
  
  .alert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 2rem;
  }
  
  .alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }
  
  .alert-success {
    background-color: #e7f7ec;
    color: #1e6445;
    border: 1px solid #b7e2cb;
  }
  
  .alert-info {
    background-color: #eaf4fc;
    color: #1E3A5F;
    border: 1px solid #cde4f3;
  }
  
  .alert-warning {
    background-color: #fff8e5;
    color: #735c12;
    border: 1px solid #f2d38c;
  }
  
  .alert-error {
    background-color: #FDEBEC;
    color: #B83232;
    border: 1px solid #F5C7C8;
  }
  

  .form-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin-top: 2rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  input[type="text"],
  input[type="email"],
  select {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background-color: white;
    transition: border-color 0.2s;
  }
  
  input:focus,
  select:focus {
    outline: none;
    border-color: #0073C6;
    box-shadow: 0 0 0 2px rgba(0, 115, 198, 0.2);
  }
  
  .checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* NAVIGASJON */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E3A5F;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .nav-logo {
    font-weight: 700;
    font-size: 1.2rem;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
  }
  
  .nav-links a:hover {
    opacity: 0.75;
  }
  
  /* FOOTER */
  .footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #F7F9FB;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e5e7eb;
    margin-top: 4rem;
  }
  

  .badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2rem;
  }
  
  .badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 128px;
    text-transform: uppercase;
    line-height: 1;
  }
  
  .badge-default {
    background-color: #EAF4FC;
    color: #0073C6;
  }
  
  .badge-secondary {
    background-color: #F1F5F9;
    color: #475569;
  }
  
  .badge-new {
    background-color: #DCFCE7;
    color: #15803D;
  }
  
  .badge-danger {
    background-color: #FDEBEC;
    color: #D93C3C;
  }
  
  .badge-outline {
    border: 1px solid #CBD5E1;
    color: #334155;
    background-color: white;
  }
  
  .spacing-demo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 2rem 0;
  }
  
  .spacing-box {
    background-color: #EAF4FC;
    color: #1E3A5F;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 48px;
  }
  
  .spacing-4 { padding: 4px; }
  .spacing-8 { padding: 8px; }
  .spacing-16 { padding: 16px; }
  .spacing-24 { padding: 24px; }
  .spacing-32 { padding: 32px; }
  .spacing-48 { padding: 48px; }
  
  .grid-demo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 2rem;
  }
  
  .grid-column {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 500;
  }
  
  .text-guidelines {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 2rem 0;
  }
  
  .text-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1 1 280px;
  }
  
  .text-card h3 {
    margin-bottom: 0.75rem;
  }
  
  .text-card ul {
    padding-left: 1.2rem;
    margin: 0;
  }
  
  .text-card li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .microtext-examples {
    margin-top: 2rem;
    background: #F1F5F9;
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .microtext-examples h3 {
    margin-bottom: 1rem;
  }
  
  .example p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  code {
    background: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    color: #1E3A5F;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  .summary-list {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
    line-height: 1.75;
    font-size: 0.95rem;
  }
  
  .summary-list li {
    margin-bottom: 0.75rem;
  }
 
 .ea-status-card {
  max-width: 1200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.ea-status-tracker {
  position: relative;
  margin-top: 24px;
  padding-left: 32px;
}

.ea-status-tracker::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #E2E8F0;
}

.ea-status-step {
  position: relative;
  padding-left: 24px;
  margin-bottom: 24px;
}

.ea-status-step::before {
  content: '';
  position: absolute;
  left: -11px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #CBD5E1;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #E2E8F0;
}

.ea-status-step.active::before {
  background: #0073C6;
  box-shadow: 0 0 0 2px #0073C6;
}

.ea-status-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1E3A5F;
}

.ea-status-sub {
  font-size: 0.875rem;
  color: #64748B;
}

