
/* Impact Overview Section */
.impact-overview {
  background: linear-gradient(135deg, rgba(53, 4, 95, 0.03), rgba(162, 108, 54, 0.03));
  padding: 4rem 0;
  margin: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}


.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}

.stat-description {
  color: var(--text-color);
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Impact Areas Section */
.impact-areas {
  padding: 4rem 0;
  background: white;
}

.impact-areas h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  position: relative;
}

.impact-areas h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.impact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 108, 54, 0.1);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.impact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.impact-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.impact-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.metric-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
  font-weight: 500;
}

.impact-card p {
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.8;
}

/* Impact Stories Section */
.impact-stories {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(53, 4, 95, 0.03), rgba(162, 108, 54, 0.03));
}

.impact-stories h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  position: relative;
}

.impact-stories h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(162, 108, 54, 0.1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-content {
  padding: 2rem;
}

.story-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.story-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.story-location {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Impact Methodology Section */
.impact-methodology {
  padding: 4rem 0;
  background: white;
}

.impact-methodology h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  position: relative;
}

.impact-methodology h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 2px;
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.methodology-text h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.methodology-text p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.methodology-text ul {
  list-style: none;
  padding: 0;
}

.methodology-text li {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  opacity: 0.9;
}

.methodology-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.methodology-visual img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section Enhancement */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}