.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.content-text h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text-black);
  margin-bottom: 20px;
}

.content-description {
  color: var(--text-black);
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.features-list li {
  color: var(--text-black);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.content-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.mission-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
  background: var(--green-200);
  border-radius: 12px;
}

.mission-stat-card {
  border-right: 1px solid var(--green-300);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inner-div {
 padding: 24px 16px;
}
.mission-stat-card:last-child {
  border-right: none;
}

.mission-stat-number {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  color: var(--text-black);
  display: block;
}

.mission-stat-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-black);
}

.mission-donate-section {
  background: var(--green-200);
  padding: 40px 0;
  text-align: center;
  margin-bottom: 20px;
}

.mission-donate-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 20px;
}

.mission-donate-description {
  color: var(--text-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donate-btn {
  background: var(--orange-accent);
  color: white;
  padding: 18px 40px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  text-decoration: none;
  display: inline-block;
  align-items: center;
  gap: 12px;
}

.donate-btn-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.donate-btn:hover {
  color: white;
  opacity: 0.8;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 26px;
  }

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

  .mission-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    background-color: transparent;
    padding: 0;
    margin-bottom: 48px;
  }

  .mission-stat-card {
    padding: 10px 40px;
    background: var(--green-200);
    border-right: none;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .mission-donate-section {
    padding: 40px 10px;
  }
}

@media (max-width: 480px) {

  .mission-donate-title,
  .mission-stat-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .mission-donate-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 40px;
  }

  .donate-btn {
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    gap: 8px;
  }

  .content-text h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .content-description {
    font-size: 12px;
    line-height: 16px;
  }

  .features-list li {
    font-size: 12px;
    line-height: 16px;
  }
}
