.collaborate-page {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 12px;
    height: 100%;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-step {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-check:checked + .btn-outline-dark {
    background-color: #212529;
    color: white;
}
