* { margin: 0; padding: 0; box-sizing: border-box; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #f8faf8, #eef5ee);
  color: #333;
}

/* HEADER */
.header { background-color: #3D7A40; color: white; text-align: center; padding: 20px; }
.header h1 { font-size: 28px; font-weight: bold; }
.header p { font-style: italic; font-size: 15px; margin-top: 4px; }
#logo { width: 70px; }

/* NAV */
nav {
  background: white;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 18px 40px;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}
nav a { text-decoration: none; color: #333; font-size: 15px; font-weight: bold; }
nav a:hover { text-decoration: underline; }
nav a.active { color: #3D7A40; }

/* FOOTER */
.footer { background-color: #3D7A40; color: white; text-align: center; padding: 14px; font-size: 13px; }
.footer a { color: white; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* HOME WRAPPER */
.home { max-width: 960px; margin: 30px auto; padding: 0 20px; }
.home > h2 { font-size: 42px; color: #2C4A2E; margin-bottom: 24px; }

/* SHARED CARD STYLE */
.container {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transition: .3s;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s ease;
}

.container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: #3D7A40;
}
.container p { 
  line-height: 1.8; 
  color: #666; 
  font-size: 16px; 
  text-align: justify;
}

.container h3 { 
  color: #2C4A2E; 
  font-size: 22px; 
  padding-bottom: 12px; 
}

/* HIGHLIGHTS */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* LATEST ANNOUNCEMENTS */
.latest-announcements { margin-bottom: 40px; }
.announcements-grid { display: grid; gap: 16px; margin-top: 20px; }
.announcement {
  background: #f4f8f3;
  border-left: 4px solid #3D7A40;
  border-radius: 8px;
  padding: 16px 20px;
}
.announcement h4 { color: #2C4A2E; font-size: 18px; margin-bottom: 6px; }
.announcement p { font-size: 15px; color: #555; margin-bottom: 4px; }
.announcement em { color: #888; font-size: 13px; }
.view-all-link { display: inline-block; margin-top: 16px; color: #3D7A40; font-weight: bold; text-decoration: none; }
.view-all-link:hover { text-decoration: underline; }

/* MAP */
.map { margin-bottom: 40px; }
.map h4 { color: #2C4A2E; font-size: 17px; margin-top: 16px; margin-bottom: 6px; }
.map p { margin-bottom: 4px; }
.map-wrapper { margin-top: 16px; border-radius: 12px; overflow: hidden; }
.map-wrapper iframe { display: block; width: 100%; height: 320px; }
.map a { color: #3D7A40; font-weight: bold; text-decoration: none; }
.map a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .map-wrapper iframe { height: 240px; }
}
