* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #2e4a29;
  overflow: hidden;
  position: relative;
}

/* Animated background */
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #d7f3df, #b2e4c3, #a2d8b8, #d9f3e0);
  background-size: 600% 600%;
  animation: gradientShift 12s ease infinite;
  z-index: -1;
}

/* Container styles */
.container {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  animation: fadeIn 1.5s ease;
}

/* Logo animation */
.logo {
  width: 140px;
  height: auto;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2e4a29;
}

.message {
  font-size: 16px;
  margin-bottom: 20px;
  color: #3c5d34;
  line-height: 1.5;
}

.contact {
  font-size: 17px;
  font-weight: bold;
  color: #1c7a37;
  margin-bottom: 15px;
}

.contact a {
  color: #1c7a37;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.email,
.address {
  font-size: 15px;
  color: #355b35;
  margin-bottom: 8px;
}

.email a {
  color: #1c7a37;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 30px;
  font-size: 14px;
  color: #607d62;
  opacity: 0;
  animation: fadeIn 2s ease forwards 1s;
}

/* --- Animations --- */

/* Background gradient shift */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fade-in effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating effect for logo */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Smooth fade-in delays */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}
