body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: #1e40af;
    border-bottom: 2px solid #1e40af;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.05);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #f9fafb;
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-canvas {
        display: none;
    }
    .process-step {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .process-step.relative::before {
        display: none;
    }
    .process-step.relative::after {
        display: none;
    }
}