/* Global Styles */



/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #005449;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
}

header img {
  max-height: 60px;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hamburger Toggle (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #005449;
}

.mobile-nav a {
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-top: 1px solid #007d6f;
}

.mobile-nav.active {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  header {
    flex-direction: row;
    justify-content: space-between;
  }

  header img {
    max-width: 60%;
    height: auto;
  }
}



/* Layout */


body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

.main {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    min-height: 600px;
    background-color: #f2f2f2;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.content-box {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: left;
}


/* Top Section */
.top-center {
  text-align: center;
  padding: 30px 20px 10px;
  background: #f9f9f9;
}

.top-center h2 {
  margin: 0;
  font-size: 1.8em;
  color: #005449;
}

.top-center h2 img {
  vertical-align: middle;
  margin: 0 6px;
}

.top-center p {
  margin-top: 10px;
  font-size: 1.1em;
}

/* Section Layouts */
.section {
  margin-bottom: 40px;
}

.section h2 {
  border-bottom: 3px solid #005449;
  padding-bottom: 6px;
  color: #005449;
}


/* Two Column */

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-col img {
  width: 40%;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.two-col div {
  flex: 1;
  min-width: 200px;
}

    .small-right {
      float: right;
      width: 20%;
      margin-right: 25px;
      margin-left: 25px;
      margin-bottom: 10px;
    }

    .small-left {
      float: left;
      width: 20%;
      margin-right: 25px;
      margin-left: 25px;
      margin-bottom: 10px;
    }


/* List Styling */

ul.mission-list {
  padding-left: 20px;
}

ul.mission-list li {
  margin-bottom: 12px;
}

/* Centered Image */
.center-img {
  display: block;
  margin: 40px auto;
  max-width: 300px;
}

/* Contact Section */

.contact-section {
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  background: #ececec;
  padding: 20px 0;
  font-size: 0.9em;
  color: #555;
}

a.email-link {
  color: #005449;
}
