.mission-section {
  font-family: 'Segoe UI', sans-serif;
  color: #731399;
  padding: 40px 0;
}

.intro-banner {
  background: #f0f0f0;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #374151;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h2, h3 {
  margin-top: 40px;
  font-size: 2rem;
  color: #731399;
}

.subtitle {
  color: #374151;
  margin-bottom: 20px;
}

.global-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.global-mission img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.text-content {
  flex: 1;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
 color: #731398;
  text-decoration: underline;
  text-decoration-color: #200119;
}

.read-more.white {
  color: #fff;
}

.outreach, .support-mission, .international {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.outreach-card, .support-card, .intl-card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  background: #f7f9fc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(13, 0, 17, 0.05);
}

.count {
  font-size: 24px;
  font-weight: bold;
  color:#374151 ;
  margin-bottom: 10px;
}

.intl-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.filter-buttons {
  margin: 30px 0;
  text-align: center;
}

.filter-buttons button {
  margin: 5px;
  padding: 10px 18px;
  border: 1px solid #731399;
  background: white;
  color: #c7d8e4;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: #731399;
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-content {
  padding: 16px;
}

.project-content h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.project-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  background: #731399;
  color: rgb(233, 227, 227);
  font-size: 12px;
  border-radius: 12px;
}
