* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f7e65c, #f2d21c);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.container {
  width: 90%;
  max-width: 600px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.logo-image {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}
.logo h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1f7a3f;
}

.logo .dot {
  color: #e53935;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid #e53935;
}

h2 {
  font-size: 26px;
  margin-top: 12px;
  color: #222;
}

.tagline {
  font-size: 14px;
  margin-top: 6px;
  color: #666;
}

.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

.info p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #333;
}

.info strong {
  color: #111;
}

.info a {
  color: #1f7a3f;
  text-decoration: none;
}

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

footer {
  margin-top: 24px;
  font-size: 12px;
  color: #777;
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    padding: 24px 20px;
  }

  h2 {
    font-size: 22px;
  }

  .logo h1 {
    font-size: 30px;
  }
}
