/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  text-align: center;
  font-size: 1.2rem; /* Increased base font size */
  line-height: 1.6;
  background-color: #fefefe;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3d7778;
}

header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #3d7778;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Sections */
main section {
  margin-bottom: 2rem;
}

main h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3d7778;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

form input,
form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #3d7778;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

form button:hover {
  background-color: #3d7778;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  margin-top: 2rem;
}

main ul {
  list-style-type: none; /* Removes bullet points */
  padding: 0;
}

main ul li {
  margin-bottom: 1rem;
  font-size: 1.3rem; /* Slight bump for readability */
}

.intro-block {
  font-size: 2rem;
  margin: 2rem auto;
  max-width: 700px;
  line-height: 1.3; /* tighter spacing for large text */
}

.intro-block p {
  margin-bottom: 2rem;
}

.mission h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.mission p {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.content {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  color: #3d7778;
}

.content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.content h4 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  font-weight: bold;
}

.content ul {
  margin-left: 1.5rem;
  padding-left: 1rem;
  list-style-type: disc;
}

.content p {
  margin: 1rem 0;
}

.compact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-title img {
  max-width: 160px;
  height: auto;
}

.logo-title h1 {
  font-size: 2.0rem;
  margin: 0;
  text-align: left;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.timeline-section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

.timeline {
  border-left: 3px solid #444;
  padding-left: 1rem;
  margin-top: 2rem;
}

.entry {
  position: relative;
  margin-bottom: 2rem;
}

.entry .date {
  font-weight: bold;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}

.entry::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: #222;
  border-radius: 50%;
}
