.header-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.header-text {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.header-text h1 {
  flex: 1;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 36px;
}

.header-text p {
  flex: 2;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  text-align: center;
  min-width: 250px;
  text-align: justify;
}

.header-image {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  height: 365px;
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
}


.header-info {
  left: 30px;
  display: flex;
  gap: 20px;
  z-index: 3;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

.info-item img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%);
}

.content {
  padding: 40px 0;
}

.section {
  margin-bottom: 40px;
}

.section h2,
.content h2 {
  font-size: 28px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.overview-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 24px;
  margin-bottom: 25px;
}

.objectives-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 40px;
}

.objectives-list {
  flex: 1;
}

.objectives-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 24px;
}

.objectives-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.objectives-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.impact-box {
  background: var(--green-200);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-900);
  text-align: center;
  padding: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .info-item {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }


  .objectives-container {
    grid-template-columns: 1fr;
  }

  .objectives-image {
    width: 100%;
    height: 120px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-text {
    gap: 12px;
    margin-top: 10px;
  }

  .header-image img {
    margin-bottom: 0;
  }
  .header-text p {
  text-align: left;

}
.header-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;

}

}
