:root {
  --accent: #006B5B;
  --accent2: #009880;
  --bg: #003b2f;
  --card: #FFFFFF;
  --muted: #555C60;
  --radius: 8px;
  --max-width: 1000px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: #1a1a1a;
  line-height: 1.5;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 200;
  color: #006400;
  margin-left: 12px;
  display: inline-block;
  vertical-align: middle;
}

.logo img {
  height: 50px;
  margin-right: 12px;
}

nav a {
  margin-left: 16px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

.cta {
/* background: var(--accent); */
  background: #71b007;
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;

  border: none;
  outline: none;

}

main {
  margin-bottom: 40px;
}

h1, h2, h3 {
  color: #1a1a1a;
}

h1 {
  color: #006400; 
  font-size: 2.0rem;
  font-weight: 400;
  margin-bottom: 0.5em;
}

h2 {
  color: #006400; 
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}

p.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.about-content ul li {
  color: var(--muted);
  font-size: 1.1rem;
}
section {
  margin-bottom: 50px;
}

.panel {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prog {
  padding: 12px;
  border: 1px solid var(--accent2);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-pill {
  background: var(--accent2);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

a.small {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin-top: 12px;
  }
}

body {
  background-color: #F8FAFC !important; /* dark green */
}

ul {
  padding-left: 1.2rem;   /* reduce bullet indentation */
  margin-left: 0;         /* remove extra margin */
  margin: 0.2em 0 0.8em 0;
}

ul li {
  margin-left: 0;         /* ensure text lines up */
  padding-left: 0;        /* no added spacing */
}

ul, ul li {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Contact Form — Theme-Matching Styles */
form label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0 16px 0;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a1a;
  background: var(--card);
  border: 1px solid #ccc;
  border-radius: var(--radius);
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 2px rgba(0, 152, 128, 0.2);
}

section.panel h2 {
  color: #006400;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* -------------------------------------------------------
   TIMELINE PAGE — Global Theme Integration
   ------------------------------------------------------- */

:root {
  --accent-light: #8ed63a;
  --line: #71b00733;
}

/* Layout: sidebar + timeline column */
.timeline-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .timeline-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.timeline-sidebar .sidebar-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.timeline-sidebar .sidebar-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Timeline vertical line */
.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--line);
  border-radius: 4px;
}

/* Timeline event card */
.event {
  background: var(--card);
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.event.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Circle node */
.event::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: #71b007;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff;
}

/* Event typography */
.event h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #71b007;
}

.event .meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.event .desc {
  font-size: 14px;
  margin: 0;
  color: #1a1a1a;
}

