body {
  
  padding: 0; margin: 0;
  
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, sans-serif;
  font-size:1.2rem;
  line-height:1.3rem;
  color: #0f172a;
  background: #404040;
}



.site-footer {
  padding: 2rem 0 1rem;
  /*margin-top: 2rem;*/

  min-height:350px;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  
  
  color: #475569;
  font-size: 0.95rem;
  
  border-top: 1px solid #e2e8f0;
  background:rgba(1,28,57,1);
  background: linear-gradient(-90deg,rgba(1, 28, 57, 1) 0%, rgba(39, 58, 105, 1) 100%);
}

.site-footer .footer-nav a {
  margin-right: 0.75rem;
  color: #334155;
  font-weight: 600;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.language-switcher button {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
}

.language-switcher button[aria-current="true"] {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.hero {
  background: linear-gradient(120deg, #e2e8f0, #fff);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-card {
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-grid article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem;
}



h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

ul {
  padding-left: 1.2rem;
}

@media (max-width: 1023px){
  #sideheaderdesktop,
  #footer-desktop
  {
    display:none!important;
  }
}

@media (min-width: 1024px) {
  body {
    padding: 0;
  }
  
  .hero-split {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}
