/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

/* Vanta.js background container */
#vanta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Custom shadow for cards */
.shadow-purple-lg {
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.1), 0 10px 10px -5px rgba(124, 58, 237, 0.04);
}

/* FAQ content initially hidden */
.bg-white button + div {
    display: none;
}

/* Animation for hover effects */
.transition-300 {
    transition: all 0.3s ease;
}