@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  color: #222;
  padding: 20px; /* Removed flex centering to allow scrolling */
}

.wrapper {
  width: 100%;
  max-width: 800px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin: auto; /* Keeps it centered horizontally */
}

.logo {
  font-size: 3.5rem;
  font-weight: 700;
  color: #111;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.08);

  position: sticky; /* Makes it stick to top */
  top: 0;
  background: white; /* Match page background */
  padding: 15px 0;
  z-index: 1000;
}

.tagline {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 25px;
}

.info p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 12px 0;
}

.partner {
  margin: 30px 0;
  background: #fef7f9;
  padding: 20px;
  border: 1px solid #ff8a00;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(229, 46, 113, 0.15);
}

.contact {
  margin-top: 20px;
}

.contact h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.contact a {
  color: #e52e71;
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

.footer-message {
  margin-top: 25px;
  font-size: 1rem;
  color: #444;
}

.animate-fade {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight {
  color: #e52e71;
}