* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #2a4638;
  color: #1f2a2a;
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px;
  background: #2a4638;
  color: white;
}

/* NAV */
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background: white;
}

.nav a {
  text-decoration: none;
  color: #2e6b5b;
  font-weight: bold;
}

.nav a:hover {
  color: #1f2a2a;
  text-decoration: underline;
}

/* SECTION */
.impact-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
}

/* ROW LAYOUT */
.row {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* TEXT */
.content {
  flex: 1;
}

.label {
  font-size: 12px;
  color: #2e6b5b;
  letter-spacing: 2px;
}

h2 {
  margin: 10px 0 20px;
}

/* HIGHLIGHT */
.highlight {
  background: #e4f0eb;
  padding: 15px;
  border-left: 4px solid #2e6b5b;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.description {
  margin-bottom: 20px;
}


/* CARDS */
.cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 150px;
  background: #f0f4f2;
  padding: 15px;
  border-radius: 10px;
}

.card-title {
  font-size: 12px;
  color: #2e6b5b;
  margin-bottom: 5px;
}

/* IMAGE */
.image-box {
  flex: 1;
}

.image-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .image-box img {
    height: 220px;
  }
}

.footer {
    background: #111;
    color: #fff;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 40px 40px;
    gap: 40px;
}

.footer-column {
    max-width: 300px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column p {
    color: #bbb;
    line-height: 1.6;
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #00c9a7;
}

.footer-social a {
    color: #bbb;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00c9a7;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0a0a0a;
    font-size: 14px;
    color: #888;
}


@media (max-width: 768px) {        
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        max-width: 90%;
    }
}