body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.left, .right {
  flex: 1;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 2rem;
}

.right {
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
}

img.logo {
  max-width: 100%;
  max-height: 80vh;
  height: auto;
}

.content {
  max-width: 600px;
  margin: auto;
}

h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact a {
  display: block;
  color: black;
  text-decoration: underline;
}

.highlight {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.highlight a {
  font-size: 1.2rem;
  color: black;
  font-weight: 600;
  text-decoration: underline;
}

footer {
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #555;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f2f2f2;
  color: #000;
  padding: 1rem;
  font-size: 0.9rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  flex-wrap: wrap;
  transform: translateY(100%);
}

.cookie-banner span {
  flex: 1 1 auto;
  margin-bottom: 0.5rem;
}

.cookie-banner button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s ease;
}

.cookie-banner button:hover {
  transform: scale(1.05);
}

.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 1s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .right {
    padding: 2rem;
    text-align: center;
  }

  .highlight a {
    display: inline-block;
    margin-top: 0.5rem;
  }
}


.inline-contact {
  display: inline-block;
  margin-top: 0.5rem;
}

.inline-contact a {
  display: inline;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.highlight img.tw-logo {
  margin-top: 0.5rem;
  max-width: 126px;
  height: auto;
  background: #fff;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}


.right, .content, .highlight, .contact {
  text-align: center;
}

.highlight p {
  margin-bottom: 0;
}


.highlight {
  border-top: 1px solid #ffffff;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}


h1 {
  word-break: break-word;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  .right {
    justify-content: center;
  }

  .content {
    justify-content: center;
  }
}
