@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background-color: #f9f9f9;
}
    section h2 {
      font-size: 1.5rem;
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      padding: 0.4rem 0.8rem;
    }

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.headline-green {
  color: #007a4d;
  font-weight: bold;
}

.headline-block {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.75rem;
  border-left: 4px solid #007a4d;
  margin-top: 0.25rem;
}

a {
  color: rgb(0, 85, 64); /* Elegant dark teal-green */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

a:hover {
  color: #007a4d; /* Your campaign green */
  border-bottom: 1px solid #007a4d;
}

a:visited {
  color: rgb(80, 110, 90); /* Muted olive/green-gray */
}

.centered-list {
  list-style-position: outside;     /* or inside, depending on preference */
  list-style-type: none;
  max-width: 50%;
  margin: 2rem auto;
  padding-left: 1.5rem;
  text-align: left; 
}

.hero {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.logo {
  position: absolute;
  top: 2vh;
  left: 2vw;
  width: clamp(120px, 20vw, 250px);
  height: auto;
  z-index: 10;
}

.secondary-header {
  background-color: #f2f2f2;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-tagline {
  font-size: 2rem;
  color: #007a4d;
  font-weight: bold;
	text-align:center;
	width:100%;
}


.content {
  padding: 2rem 1rem;
  text-align: center;
}

.content h1 {
  font-size: 2.2rem;
  color: #007a4d;
  margin-bottom: 1rem;
}

.content h2 {
  color: #007a4d;
}

.content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0.5rem auto;
}

.action-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.action img {
  width: 150px;
  height: 150px;
  margin: 1rem 0;
  border-radius: 8px;
  border: 4px solid #ccc;
}

a.btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-wrapper {
  text-align: center;
  margin: 3rem 0;
}


a.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #007a4d;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 122, 77, 0.2);
}

a.cta-button:hover,
a.cta-button:focus {
  background-color: #005f3b;
  box-shadow: 0 6px 12px rgba(0, 122, 77, 0.35);
  outline: none;
}


.primary {
  background-color: #007a4d;
}

.primary:hover {
  background-color: #005f3a;
}

.secondary {
  background-color: #444;
}

.secondary:hover {
  background-color: #222;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #eee;
  color: #555;
}
    .partners {
      margin-top: 2rem;
    }

    .partners h2 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #333;
    }

    .partner-logos {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .partner-logos img {
      max-height: 100px;
      object-fit: contain;
    }

.main-nav {
      display: flex;
      justify-content: center;
      gap: 2rem;
      background: #ffffffee;
      backdrop-filter: blur(6px);
      padding: 1rem;
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .main-nav a {
      color: #007a4d;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .main-nav a:hover {
      color: #005a35;
    }

    /* Responsive nav: hide main on small screens */
    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }
    }

    /* Slide-In Nav */
    .slide-nav {
      position: fixed;
      top: 0;
      right: 0;
      padding: 1rem;
      z-index: 1001;
    }

    .nav-toggle {
      font-size: 2rem;
      color: #007a4d;
      cursor: pointer;
      user-select: none;
      position: fixed;
      top: 1rem;
      right: 1rem;
      z-index: 1002;
      transition: transform 0.3s ease;
      display: none;
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }
    }

    .nav-toggle.open::before {
      content: '\2715'; /* Unicode X */
    }

    .nav-toggle::before {
      content: '\2630'; /* Unicode hamburger */
    }

    .nav-menu {
      position: fixed;
      top: 0;
      right: -300px;
      height: 100vh;
      width: 250px;
      background: white;
      box-shadow: -4px 0 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      padding-top: 5rem;
      padding-left: 2rem;
      gap: 1.5rem;
      transition: right 0.3s ease;
      z-index: 1001;
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-menu a {
      font-size: 1.2rem;
      color: #007a4d;
      text-decoration: none;
      font-weight: bold;
    }

    .nav-menu a:hover {
      color: #005f3a;
    }

    body.menu-open::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1000;
    }

    body.menu-open {
      overflow: hidden;
    }



/* cards style */
.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.5rem;
  color: #007a4d;
}

.card p {
  padding: 0 1.5rem;
  color: #333;
  font-size: 1rem;
}

.card-btn {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  background-color: #007a4d;
  color: white !important;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.card-btn:hover {
  background-color: #005f3b;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 122, 77, 0.25);
}
@media (min-width: 768px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*Document gallery styles */

.doc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.doc-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.doc-card:hover {
  box-shadow: 0 6px 20px rgba(0, 122, 77, 0.15);
}

.doc-icon {
  width: 40px;
  margin-bottom: 1rem;
}

.doc-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #007a4d;
}

.doc-link {
  display: inline-block;
  margin-top: 1rem;
  color: #007a4d;
  text-decoration: underline;
  font-weight: bold;
}
