:root {
  --primary: #20524f;
  --secondary: #fdd030;
  --background: #f8f9fa;
  --text: #333;
  --text-light: #666;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 20px;
  text-align: center;
  line-height: 1.6;
  color: var(--text);
}

.logo {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.logo span:last-child {
  color: var(--secondary);
}

h1 {
  color: var(--primary);
  margin: 0 0 1rem;
  font-size: 2.5rem;
}

p {
  margin: 0 0 1.5rem;
  color: var(--text-light);
  max-width: 500px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 2rem auto;
  border: none;
}

a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  .logo {
    font-size: 1.75rem;
  }
}
