body {
  font-family: Arial, sans-serif;
  margin: 0; padding: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #004d26;
  color: white;
  padding: 15px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

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

main {
  padding: 20px;
}

.hero {
  padding: 50px;
  background: #e8f5e9;
  text-align: center;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
}

/* Program Images */
.program {
  margin: 30px auto;
  max-width: 800px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.program h3 {
  margin-top: 10px;
}
.prog-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

/* Org Chart */
.tree ul {
  padding-top: 20px; 
  position: relative;
  display: inline-block;
}
.tree li {
  display: inline-block;
  text-align: center;
  list-style-type: none;
  position: relative;
  padding: 20px 5px 0 5px;
}
.tree li::before, .tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 2px solid #555;
  width: 50%;
  height: 20px;
}
.tree li::after {
  right: auto; 
  left: 50%;
  border-left: 2px solid #555;
}
.tree li:only-child::before, .tree li:only-child::after {
  content: none;
}
.tree li:only-child {
  padding-top: 0;
}
.tree li:first-child::before { border: none; }
.tree li:last-child::after { border: none; }
.box {
  border: 2px solid #4CAF50;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  display: inline-block;
  color: #333;
  font-weight: bold;
  min-width: 150px;
  transition: all 0.3s ease;
}
.box:hover {
  background: #4CAF50;
  color: white;
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  text-align: left;
  margin: 10px 0 5px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
}
.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background: #004d26;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #007a3d;
}