/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom components */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* FAQ accordion */
.faq-item {
  transition: all 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 500px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-image {
    margin-top: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Sticky header behavior */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.sticky-header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
/* Footer styles */
footer .text-primary-100 {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  text-decoration: underline;
}

footer .border-primary-300 {
  border-color: rgba(255, 255, 255, 0.1);
}
