body, html {
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #007bff 0%, #00ff88 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: white;
  padding: 120px 0;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Stats Section */
.impact-number {
  font-size: 2.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.impact-number:hover {
  transform: scale(1.1);
}

/* About Section */
#about .list-unstyled li {
  padding: 15px;
  border-right: 3px solid #007bff;
  transition: all 0.3s ease;
}
#about .list-unstyled li:hover {
  background: rgba(0,123,255,0.05);
  padding-left: 20px;
}

/* Focus Areas Cards */
.cause-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.cause-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Map Section */
.map-container {
  border-radius: 15px;
  overflow: hidden;
}

.location-list {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
}

.location-list a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.location-list a:hover {
  background: #007bff;
  color: white;
  padding-left: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2.5rem;
  }

  .hero-section {
      padding: 80px 0;
  }

  #about .col-md-6 {
      margin-bottom: 30px;
  }

  .map-container iframe {
      height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
      font-size: 2rem;
  }

  .impact-number {
      font-size: 2rem;
  }

  .location-list {
      margin-top: 20px;
  }
}
