:root {
  --main-green: #3A5A40;
  --accent-green: #4A7C59;
  --light-green: #A3B18A;
  --fresh-green: #34A853;
  --offwhite: #f0f4f0;
  --background: #E9F5DB;
  --card-bg: #f8f9fa;
  --border: #DAD7CD;
  --text-dark: #333333;
  --text-light: #454545;
  --shadow: 0 8px 32px 0 rgba(60,90,64,0.10);
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, var(--background) 0%, var(--offwhite) 100%);
  color: var(--text-dark);
  min-height: 100vh;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 1.5rem 1rem;
  background: rgba(250,255,250,0.85);
  box-shadow: var(--shadow);
  border-bottom: 2px solid var(--border);
  position: relative;
}

.header-logo {
  position: absolute;
  left: 2rem;
  top: 1rem;
  width: 70px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(55,122,89,0.10);
}

#text-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--main-green);
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(58,90,64,0.05);
}

header h1 {
  font-size: 2rem;
  color: var(--accent-green);
  margin: 0.5rem 0 0.3rem 0;
}

header p {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.2rem 0 0 0;
}

nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  background: rgba(58,90,64,0.96);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.7rem 0;
  box-shadow: 0 2px 8px 0 rgba(58,90,64,0.06);
}

nav a {
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.18s;
  padding: 0.2rem 0.7rem;
  border-radius: 8px;
}

nav a:hover, nav a:focus {
  background: var(--fresh-green);
  color: #fff;
}

main {
  max-width: 940px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem 2rem 1rem;
}

section {
  margin-bottom: 2.5rem;
}

h2 {
  color: var(--main-green);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3, h4 {
  color: var(--accent-green);
  margin-top: 0;
}

.responsive-img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  display: block;
  margin: 1.5rem auto 0.5rem auto;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.caption {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.journey-images {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.journey-images figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(250,255,250,0.70);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  margin: 0;
  max-width: 320px;
}

.journey-images img {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  margin-bottom: 0.8em;
}

.journey-images figcaption {
  text-align: center;
  font-size: 1.08em;
  color: var(--accent-green);
  background: rgba(163,177,138,0.13);
  border-radius: 8px;
  padding: 0.35em 1em 0.4em 1em;
  margin: 0 0 0.3em 0;
  font-weight: 500;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px 0 rgba(58,90,64,0.06);
}

.mission-overview {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mission-box, .overview-box {
  flex: 1 1 240px;
  background: rgba(250,255,250,0.65);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
  transition: transform 0.13s;
}
.mission-box:hover, .overview-box:hover {
  transform: translateY(-3px) scale(1.02);
}

.component-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.component-details > div {
  flex: 1 1 220px;
  background: rgba(255,255,255,0.90);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  min-width: 200px;
  border: 1.5px solid var(--light-green);
  transition: box-shadow 0.18s, transform 0.13s;
}
.component-details > div:hover {
  box-shadow: 0 10px 28px 0 rgba(76,175,80,0.11);
  transform: translateY(-2px) scale(1.025);
}

ul {
  padding-left: 1.25em;
}

.team-members {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.2rem;
}

.member {
  background: rgba(58,90,64,0.09);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  min-width: 180px;
  text-align: center;
  flex: 1 1 180px;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 1.2px solid var(--border);
}
.member:hover {
  box-shadow: 0 8px 24px 0 rgba(76,175,80,0.10);
  transform: translateY(-2px) scale(1.025);
}

#contact a {
  background: var(--fresh-green);
  color: #fff;
  padding: 0.35em 1.1em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
  margin-top: 0.5rem;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(52,168,83,0.09);
}
#contact a:hover {
  background: var(--main-green);
}

footer {
  background: var(--accent-green);
  color: #fff;
  text-align: center;
  padding: 1.2rem 0 1rem 0;
  margin-top: 2rem;
  letter-spacing: 0.4px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0 -2px 16px 0 rgba(58,90,64,0.07);
  font-size: 1rem;
}

.mission-box, .overview-box, .component-details > div, .member {
  backdrop-filter: blur(4px);
  background: rgba(250, 255, 250, 0.75);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  font-size: 1rem;
  background: rgba(250,255,250,0.92);
  box-shadow: 0 8px 32px 0 rgba(58,90,64,0.08);
  border-radius: 18px;
  overflow: hidden;
}

thead {
  background: linear-gradient(90deg, var(--main-green) 60%, var(--accent-green) 100%);
  color: #fff;
}

th, td {
  padding: 1rem 0.85rem;
  text-align: left;
  border-bottom: 1.5px solid var(--border);
}

th {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.07em;
}

tbody tr {
  transition: background 0.15s;
}

tbody tr:hover {
  background: var(--light-green);
  color: #fff;
}

tbody tr:last-child td {
  border-bottom: none;
}

#sources ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  background: rgba(58,90,64,0.05);
  border-radius: 15px;
  box-shadow: 0 4px 16px 0 rgba(58,90,64,0.07);
  overflow: hidden;
}

#sources li {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 1.04em;
  padding: 0.65em 1.3em;
  border-bottom: 1px solid var(--border);
  background: rgba(250,255,250,0.95);
  transition: background 0.14s;
}

#sources li a {
  color: var(--main-green);
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.16s;
}

#sources li a:hover, #sources li a:focus {
  color: var(--accent-green);
  text-decoration: underline;
}

#sources li:last-child {
  border-bottom: none;
}

#sources ul li::before {
  content: "🔗";
  color: var(--accent-green);
  font-size: 1.1em;
  margin-right: 0.4em;
  opacity: 0.85;
}

#sources br {
  display: none;
}

@media (max-width: 700px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 1.2rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px 0 rgba(58,90,64,0.04);
    background: rgba(250,255,250,0.85);
  }
  td {
    padding: 0.8rem 1rem;
    border-bottom: none;
    position: relative;
  }
  td:before {
    display: none;
  }
}

@media (max-width: 850px) {
  .component-details, .team-members, .mission-overview, .journey-images {
    flex-direction: column;
    gap: 1.1rem;
  }
  header {
    padding-bottom: 2.5rem;
  }
  .header-logo {
    position: static;
    margin-bottom: 0.7rem;
  }
}

@media (max-width: 700px) {
  .journey-images img {
    max-width: 98vw;
  }
  #sources ul {
    padding: 0.2em 0.3em;
  }
  #sources li {
    padding: 0.6em 0.7em;
    font-size: 0.97em;
  }
}

@media (max-width: 600px) {
  nav {
    gap: 0.7rem;
    flex-wrap: wrap;
    font-size: 0.98rem;
    padding: 0.6rem 0.1rem;
  }
  main {
    padding: 0 0.2rem 2rem 0.2rem;
  }
  header {
    padding: 1.1rem 0.5rem 1rem 0.5rem;
  }
  .responsive-img {
    border-radius: 12px;
  }
}

#middle {
  text-align: center;
}