* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html, body {
  height: 100%;               
  display: flex;
  flex-direction: column;     
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  text-align: center;
  flex: 1;                    
}

/* Hero */
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ← THIS */
  align-items: center;
  padding: 40px 20px;
}

/* Animated Logo */
.logo {
  width: 280px;
  max-width: 80%;
  margin-bottom: 25px;
  display: block;
  animation: glow 2.5s infinite alternate;
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 8px rgba(255,91,0,0.4))
            drop-shadow(0 0 16px rgba(255,91,0,0.3));
  }
  to {
    filter: drop-shadow(0 0 15px rgba(255,91,0,0.8))
            drop-shadow(0 0 30px rgba(255,91,0,0.6));
  }
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.underline {
  width: 100%;
  max-width: 500px;
  height: 4px;
  background: #FF5B00;
  margin: 10px auto 20px;
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.4; width: 300px; }
  to { opacity: 1; width: 500px; }
}

header p {
  margin: 10px 0 20px;
  font-size: 1.1rem;
  color: #444;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.btn {
  padding: 15px 35px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: #FF5B00;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #e24c00;
  box-shadow: 0 0 15px rgba(255,91,0,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.btn-outline:hover {
  border-color: #FF5B00;
  color: #FF5B00;
}

/* Footer */
.footer {
  background: #fff;         
  color: #555;
  text-align: center;
  padding: 25px 15px;
  margin-top: auto;         
}

.footer p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #FF5B00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #000;
}
