* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  background: #fefefe;
  color: #111;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: rgba(255, 255, 255, 0.6);
  color: #222;
  padding: 5px 0;
  /* Remove horizontal padding from outer container */
  display: flex;
  justify-content: center;
  /* Center the inner wrapper */
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.header-content {
  width: 100%;
  max-width: 980px;
  /* Match footer max-width */
  padding: 0 24px;
  /* Move padding to inner wrapper */
  display: flex;
  gap: 24px;
  align-items: center;
}

header a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

header a:hover {
  text-decoration: underline;
}

header nav {
  display: flex;
  gap: 24px;
}

.container {
  max-width: 980px;
  /* Restored max-width for centering */
  margin: 24px auto;
  background: #fefefe;
  padding: 20px 24px;
  /* Match header/footer horizontal padding */
  flex: 1;
  width: 100%;
}

h1 {
  margin-top: 0
}

address {
  font-style: normal;
  white-space: pre-line
}

.meta {
  margin-top: 12px
}

.label {
  font-weight: 600
}

.placeholder {
  color: #888
}

footer {
  width: 100%;
  border-top: 1px solid #e5e7eb;
  padding: 32px 0 0;
  /* Remove horizontal padding from outer container. Remove bottom padding from here.*/
  color: #666;
  background: #fefefe;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  max-width: 980px;
  /* Increased width as requested */
  padding: 0 24px;
  /* Add padding here for alignment */
  margin-left: auto;
  margin-right: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-title {
  font-weight: 600;
  color: #111;
  font-size: 1.1em;
}

.footer-tagline {
  font-size: 0.9em;
  color: #888;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 32px;
  /* Align with logo height */
}

.footer-nav a {
  color: #666;
  text-decoration: none;
  font-size: 0.95em;
}

.footer-nav a:hover {
  color: #111;
  text-decoration: underline;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85em;
  color: #999;
  margin: 32px;
  border-top: 1px solid #e5e7eb;
}

section {
  margin-bottom: 16px
}

.uc-privacy-policy {
  max-width: 940px;
  width: 100%;
  margin: 24px auto;
  display: block;
}

/* Force Usercentrics injected table container to scroll */
.uc-privacy-policy .privacy-table-container {
  display: block !important;
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Maintain table width to prevent squashing */
.uc-privacy-policy .privacy-table,
.uc-privacy-policy table {
  min-width: 600px !important;
  width: 100% !important;
  table-layout: auto !important;
}

.privacy-table th:nth-child(3),
.privacy-table td:nth-child(3),
.privacy-table th:nth-child(4),
.privacy-table td:nth-child(4) {
  width: auto !important;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
    height: auto;
  }

  .uc-privacy-policy {
    margin: 0;
  }
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-banner {
  width: 90%;
  max-width: 350px;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

.lost-banner {
  width: 90%;
  max-width: 500px;
  height: auto;
}

.hero-tagline {
  font-size: 1.25em;
  color: #444;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.5;
  margin: 0;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}