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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fef9f2;
  color: #333;
  padding: 20px;
  line-height: 1.7;
}

.logo-container {
  text-align: center;
  margin-top: 20px;
}

.logo {
  width: 220px;
  max-width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

header {
  text-align: center;
  margin-bottom: 30px;
  background-color: #f2ffec;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 255, 0, 0.1);
}

/* Removed .tagline since it's no longer used */

h1 {
  font-size: 3rem;
  color: #3a603a;
  text-shadow: 1px 1px 0 #b0ffb0;
}

main {
  max-width: 900px;
  margin: 0 auto;
}

/* Apply green tint to all .container sections */
.container {
  background-color: #f2ffec;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 6px 12px rgba(0, 128, 0, 0.08);
}

h2 {
  font-size: 1.8rem;
  color: #2a4a2a;
  margin-bottom: 15px;
}

p, li {
  font-size: 1.2rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00cc66;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 204, 102, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #00b35a;
  transform: translateY(-2px);
}

form {
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 12px;
  padding: 14px;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

form button {
  background-color: #3a603a;
  color: white;
  padding: 12px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(58, 96, 58, 0.3);
}

form button:hover {
  background-color: #2f4e2f;
}

footer {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.paw-trail {
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
  color: #a3cfa3;
}

.paw-trail span {
  display: inline-block;
  transform: rotate(-20deg);
  margin: 0 5px;
  animation: step 1.5s ease-in-out infinite;
}

@keyframes step {
  0%, 100% { transform: translateY(0) rotate(-20deg); }
  50% { transform: translateY(-5px) rotate(-20deg); }
}