html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

/* Custom animations */
.reveal {
  transition: all 0.8s ease;
}

/* Staggered animation delays */
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}

/* FAQ Container with overflow and blur effect */
.faq-container {
  max-height: 550px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease-in-out;
}

.faq-container.expanded {
  max-height: none;
}

.faq-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(249, 250, 251, 0.9), #f9fafb);
  backdrop-filter: blur(2px);
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}

.dark .faq-container::after {
  background: linear-gradient(transparent, rgba(31, 41, 55, 0.9), #1f2937);
}

.faq-container.expanded::after {
  opacity: 0;
  pointer-events: none;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #00b4cc 0%, #2DD4BF 100%);
  position: relative;
}

/* Custom colors */
:root {
  --primary-50: #e0f2fe;
  --primary-100: #bae6fd;
  --primary-200: #7dd3fc;
  --primary-500: #00b4cc;
  --primary-600: #007d8c;
  --error-500: #ef4444;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
  background: #374151;
}

::-webkit-scrollbar-thumb {
  background: #00b4cc;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #008c9e;
}

.dark ::-webkit-scrollbar-thumb {
  background: #00d4f0;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #00a8c4;
}

.custom-shape-divider-bottom-1749004794 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1749004794 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.custom-shape-divider-bottom-1749004794 .shape-fill {
  fill: #FFFFFF;
}

.dark .custom-shape-divider-bottom-1749004794 .shape-fill {
  fill: var(--color-gray-900);
}