.checklist-card {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checklist-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}
.checklist-card h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.checklist-card ul {
    list-style: none;
    padding: 0;
}

.checklist-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.checklist-card ul li i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 10px;
}
