.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section label line */
.label-line::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin-right: 0.6rem;
}

/* Custom bullet for policy items */
.policy-item::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffb42e;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

/* Sidebar sticky highlight */
.nav-link {
    transition: color 0.2s, padding-left 0.2s;
}

.nav-link:hover {
    color: #ffb42e;
    padding-left: 0.5rem;
}

.nav-link.active {
    color: #ffb42e;
    padding-left: 0.5rem;
    border-left: 2px solid #ffb42e;
}