/* Additional styles for animations */

.purpose-card, .quote, .cta-button {
  opacity: 1;
  transform: translateY(0);
}

/* Removed animations and fading effects */

/* CF awareness ribbon styling */
.cf-ribbon {
  display: inline-block;
  position: relative;
  margin: 2rem auto;
}

.cf-ribbon img {
  max-width: 100px;
  height: auto;
}

/* Journey/Timeline section removed as requested */

/* Social media sharing buttons */
.social-share {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-share a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}
