.tag-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(20, 83, 45, 0.1);
}

.pref-group-title {
    position: relative;
    padding-left: 1rem;
}
.pref-group-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #a3e635;
    border-radius: 2px;
}