body { 
  background-color: #022c22; 
  color: #f0fdf4; 
  font-family: 'Outfit', sans-serif; 
  overflow-x: hidden;
}

/* Utilities */
.glass-panel {
  background: rgba(6, 78, 59, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
  background: rgba(2, 44, 34, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 95, 70, 0.5);
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Bar Chart Animation */
.bar-grow {
  height: 0;
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Margin for fixed header */
section {
  scroll-margin-top: 100px;
}

/* FAQ Accordion Transition */
.accordion-content {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
.accordion-content.open {
  opacity: 1;
}
