.hero {
  position: relative;
  height: unset;
  background-image: linear-gradient(
      rgba(19, 10, 10, 0.4),
      rgba(19, 10, 10, 0.4)
    ),
    url("./images/forwomen.jpg");
  padding-bottom: 20px;
} /* Mission Section */
section {
  padding: 0px 30px;
}
.mission {
  padding: 30px;
  text-align: center;
  background-color: var(--bg-dark);
}

.mission h2 {
  color: var(--brand-bright);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: var(--text-gray);
}

/* Features Section */
.women-features {
  padding: 30px;
  background-color: var(--bg-darker);
}

.women-features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.women-features .feature-card {
  padding: 2rem;
  text-align: center;
  background-color: var(--bg-dark);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.women-features .feature-card:hover {
  transform: translateY(-5px);
}

.women-features .feature-card h3 {
  color: var(--brand-bright);
  margin-bottom: 1rem;
}

.women-features .feature-card p {
  color: var(--text-gray);
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background-color: var(--brand-green);
  mask-size: 60%;
  mask-position: center;
  mask-repeat: no-repeat;
}

.tree-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 14h-6'/%3E%3Cpath d='M7 14h.01'/%3E%3Cpath d='M7 10h.01'/%3E%3Cpath d='M17 10h-6'/%3E%3Cpath d='M7 6h.01'/%3E%3Cpath d='M17 6h-6'/%3E%3Cpath d='M7 18h.01'/%3E%3Cpath d='M17 18h-6'/%3E%3Crect width='18' height='20' x='3' y='2' rx='2'/%3E%3C/svg%3E");
}

.training-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 20h9'/%3E%3Cpath d='M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z'/%3E%3C/svg%3E");
}

.community-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

/* Impact Story Section */
.impact-story {
  padding: 30px;
  background-color: var(--bg-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.story-content h2 {
  color: var(--brand-bright);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

/* Impact Metrics Section */
.impact-metrics {
  padding: 30px;
  background-color: var(--bg-darker);
  color: var(--text-light);
  text-align: center;
}

.impact-metrics h2 {
  color: var(--brand-bright);
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metric {
  padding: 2rem;
  background-color: var(--bg-dark);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.metric-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--brand-green);
  mask-size: 100%;
  mask-position: center;
  mask-repeat: no-repeat;
}

.metric-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-bright);
}

.metric-label {
  font-size: 1.1rem;
  color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }
}
