.get-involved-page {
  font-family: 'Arial', sans-serif;
  color: #2d3748;
}

.hero-section {
  position: relative;
  height: 400px;
  background: url('/photos/hero-image/3.jpeg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.hero-section .hero-text {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.why-join, .ways-to-help, .success-stories, .cta-section {
  padding: 4rem 1rem;
  text-align: center;
}

.why-join h2,
.ways-to-help h2,
.success-stories h2,
.cta-section h2 {
  font-size: 2rem;
  color: #db2777;
  margin-bottom: 1rem;
}

.why-join p,
.success-stories p,
.cta-section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #4a5568;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.help-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.help-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.help-card img {
  height: 64px;
  margin-bottom: 1rem;
}

.help-card h3 {
  font-size: 1.25rem;
  color: #db2777;
  margin-bottom: 0.5rem;
}

.help-card p {
  color: #4a5568;
  margin-bottom: 1rem;
}

.help-card button {
  background-color: #db2777;
  color: white;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.help-card button:hover {
  background-color: #be185d;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.story-card {
  background-color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 280px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.story-card video,
.story-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
}

.story-card h3 {
  color: #db2777;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cta-section {
  background-color: #db2777;
  color: white;
}

.cta-section button {
  background-color: #facc15;
  color: #1f2937;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.cta-section button:hover {
  background-color: #fde047;
}
