body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f1f1f;
}

.hero-section {
    background: radial-gradient(circle at top, rgba(13, 110, 253, 0.1), transparent 55%);
}

.feature-box h5,
.feature-box h6 {
    font-size: 1rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0d6efd;
    opacity: 0.4;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.25);
}

.breadcrumb a {
    text-decoration: none;
}

.article-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.card {
    border-radius: 1rem;
}

@media (max-width: 767.98px) {
    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }
}
