/* Minimal custom styles - mostly using Tailwind */
@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-ping {
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.process-card-modern p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.process-card-modern ul {
    list-style: none;
    padding-left: 0;
}

.process-card-modern ul li:before {
    content: "▸";
    color: var(--primary-color);
    margin-right: 0.5rem;
}
