@import url("https://fonts.googleapis.com/css2?family=Joan&display=swap");

body {
  font-family: "Joan", serif;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  background: #4a7c59;
  color: white;
  min-height: 100vh;
}

.container {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

header {
  margin-bottom: 2rem;
}

h1 {
  color: white;
  margin: 0 0 0.5rem 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

main {
  color: white;
}

main p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  margin: 0.5rem 0;
  line-height: 1.4;
}

main a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

main a:hover {
  border-bottom-color: white;
}

footer {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
}
