@view-transition {
    navigation: auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  text-decoration-color: var(--sly-red);;
}

address {
  margin: 16px 0;
  font-style: normal;
}

ul {
  margin: 16px 0;
  padding-left: 16px;
  list-style-type: disc;
}

h3 {
  margin: 20px 0 10px;
}

body {
  background-color: #101010;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 128px;
	position: relative;
	box-sizing: border-box;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  view-transition-name: none;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
	justify-content: center;
	view-transition-name: content;
}

.logo {
  height: auto;
  max-width: 220px;
}

.subpage-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.back-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.back-link:hover .back-arrow {
  transform: translateX(-4px);
}

.page-title {
  font-size: 40px;
  font-weight: 700;
}

.landing-main {
  justify-content: center;
}

.copy-container2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.copy-container3 {
  width: 35px;
  height: 2px;
  background-color: #e52423;
}

.copy-text-paragraph {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.copy-title {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
	display: block;
  max-width: 960px;
}

.copy-subtitle {
  font-size: 28px;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 50px;
	display: block;
  max-width: 900px;
}

.copy-container4 {
  display: flex;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
}

.copy-text-for {
  color: #ffffff;
}

.copy-link-text {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.imprint-main {
  justify-content: flex-start;
  gap: 32px;
  padding-left: 48px;
  max-width: 900px;
}

.imprint-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.imprint-section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 12px;
}

.imprint-section p:last-child {
  margin-bottom: 0;
}

.imprint-link {
  color: var(--sly-red);
  text-decoration: none;
}

.imprint-link:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  color: var(--slyhealth-sly-text-muted);
}

.footer-navigation {
  display: flex;
  list-style: none;
  gap: 6px;
}

@media (max-width: 768px) {
  body {
    padding: 40px 30px;
  }

  .imprint-main {
    padding: 0;
  }

  .copy-container4 {
    flex-direction: column;
  }

  .page-title {
    font-size: 32px;
  }

  .copy-title {
    font-size: 42px;
  }

  .copy-subtitle {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .CookieDeclarationTableHeader {
    word-wrap: break-word;
  }
}