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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.logo img {
  width: 140px;
  margin-bottom: 1rem;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.brand-name span:first-child {
  color: #2ecc40;
}
.brand-name span:last-child {
  color: #f47c20;
}

.divider {
  width: 60px;
  height: 4px;
  background: #f47c20;
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f47c20;
  margin-bottom: 1rem;
}

p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  margin-top: 1.5rem;
  background: #fff5ec;
  color: #c25e00;
  border: 1.5px solid #f47c20;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #aaa;
}

.footer a {
  color: #f47c20;
  text-decoration: none;
}
