body {
  margin: 0;
  font-family: Verdana, sans-serif;
  background: linear-gradient(180deg, #ff4e00, #ec9f05);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  flex: 1;
}

.hero-logo {
  max-width: 500px;
  margin-right: 30px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0;
  background: linear-gradient(90deg, #ffd700, #ffcc33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #ffe680;
}

.hero-text p {
  font-size: 1.1rem;
  margin-top: 15px;
  line-height: 1.5;
  color: #fff5cc;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  margin-bottom: 15px;
  display: none;
}

.social-links a {
  margin: 0 10px;
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.emails {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.emails li {
  color: #ffe680;
}

.powered,
.address {
  margin-top: 10px;
  color: #ffd700;
}

.address {
  text-decoration: underline;
}
.emails a {
  color: white;
  text-decoration: none;
  /* optional, removes underline */
}

.emails a:hover {
  text-decoration: underline;
  /* optional hover effect */
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo {
    margin: 0 0 20px 0;
  }
}
