.card-title {
    font-weight: 600;
}

.card:hover {
    transform: translateY(-3px);
    transition: 0.2s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.doc-header h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.doc-step {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.doc-step h2 {
    color: #6a2ea4;
    margin-bottom: 1rem;
}

.doc-step ul {
    padding-left: 1.5rem;
}

.doc-body {
    background-color: #f8f9fa;
}

a {
    color: #6a2ea4;
}

a:hover {
    color: #4c1c85;
    text-decoration: underline;
}


