.top-image {
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  display: block;
  margin: 40px auto 24px auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.logo-oval {
  position: relative;
  width: 160px;
  height: 220px;
  border: 8px solid #fff;
  border-radius: 50% / 45%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.logo-j {
  font-family: 'Georgia', serif;
  font-size: 110px;
  font-weight: bold;
  color: #fff;
  position: static;
  transform: none;
}
body, .logo-only, .logo-container, .symbol, .cookie-banner {
  background-color: #006644 !important;
}
/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: 0;
  background: none;
  vertical-align: baseline;
}
*::before,
*::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background-color: #006644;
  font-family: 'Georgia', serif;
  min-height: 100vh;
}

.logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #006644;
  border-radius: 12px;
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  opacity: 1;
  transform: scale(1);
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.symbol {
  font-size: 120px;
  font-weight: bold;
  border: 6px solid white;
  border-radius: 50% / 40%;
  width: 200px;
  height: 120px;
  line-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: transparent;
  color: white;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.text h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

.text p {
  font-size: 14px;
  margin-top: 8px;
  letter-spacing: 1px;
}

.cookie-banner {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  width: 90vw;
  min-width: 220px;
  box-sizing: border-box;
  padding: 1.2rem 2vw;
  word-break: break-word;
  background: rgba(34, 34, 34, 0.98);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  z-index: 10000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  border-radius: 8px;
}

.cookie-banner p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.cookie-banner button {
  margin: 0;
  padding: 0.7rem 2rem;
  background: #c19a6b;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.cookie-banner button:hover {
  background: #a67c52;
}
