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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1b3a1f;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 15, 0.65), rgba(10, 30, 15, 0.8));
  z-index: -1;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  margin: 40px 0;
}

.logo-wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  display: inline-block;
  background: #e6f4e6;
  color: #2e7d32;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  color: #1b3a1f;
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.description {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tagline {
  color: #2e7d32;
  /* font-weight: 600; */
  /* letter-spacing: 0.05em; */
  margin-bottom: 20px;
}

.description strong {
  color: #2e7d32;
}

.footer-text {
  color: #8a8a8a;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
