@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300;400;700&display=swap');

:root {
  --primary-color: #4a7c2c; /* Nature Green */
  --secondary-color: #f4f1ea; /* Light Cream/Sand */
  --accent-color: #d35400; /* Earthy Orange/Rust */
  --text-color: #333;
  --header-font: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  --body-font: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
}

body {
  font-family: var(--body-font);
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  background-color: #fff;
  padding: 40px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-top: 8px solid var(--primary-color);
}

h1 {
  font-family: var(--header-font);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8em;
}

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

.logo {
  max-width: 250px;
  height: auto;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.section-header h2 {
  border-bottom: none;
  margin-top: 0;
  padding-bottom: 0;
  flex: 1;
}

.section-image {
  max-width: 100px;
  height: auto;
  border-radius: 50%;
  margin-left: 20px;
}

h2 {
  font-family: var(--header-font);
  color: var(--accent-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-top: 30px;
}

.highlight {
  font-weight: bold;
  color: var(--primary-color);
}

.dates {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  margin: 20px 0;
}

.contact-info {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.contact-info a {
  color: #666;
  text-decoration: underline;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.btn-contact {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn-contact:hover {
  background-color: #3d6624;
}

.download-section {
  text-align: center;
  margin: 30px 0;
}

.btn-download {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s, background-color 0.3s;
}

.btn-download:hover {
  background-color: #a04000;
  transform: translateY(-2px);
}

.btn-download .icon {
  margin-right: 10px;
}

a {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 600px) {
  body {
    padding: 10px 0;
  }
  .container {
    padding: 20px;
    margin: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .section-header {
    flex-direction: column;
    text-align: center;
  }
  .section-image {
    margin-left: 0;
    margin-bottom: 10px;
    order: -1;
  }
}
