/* Custom Styles */
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-animation {
    animation: pulse-animation 2s infinite;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* FAQ Details transitions */
details summary::-webkit-details-marker {
    display: none;
}
